/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-primary: #0168C6;
    --red-primary: #B71C1C;
    --blue-light: #3395E0;
    --blue-dark: #014A8F;
    --red-light: #E53935;
    --red-dark: #880E0E;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F5F7FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(1, 104, 198, 0.03) 35px, rgba(1, 104, 198, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(183, 28, 28, 0.03) 35px, rgba(183, 28, 28, 0.03) 70px);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg width="100" height="150" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="85" x="20" y="30" fill="none" stroke="%230168C6" stroke-width="1.5" rx="5" opacity="0.08"/><text x="50" y="70" font-size="18" fill="%23B71C1C" text-anchor="middle" opacity="0.12">A</text></svg>'),
        url('data:image/svg+xml,<svg width="100" height="150" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="85" x="20" y="30" fill="none" stroke="%230168C6" stroke-width="1.5" rx="5" opacity="0.08"/><text x="50" y="70" font-size="18" fill="%23333" text-anchor="middle" opacity="0.12">K</text></svg>');
    background-size: 250px 350px, 250px 350px;
    background-position: 10% 10%, 60% 30%;
    background-repeat: repeat;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsible Gaming Banner */
.responsible-banner {
    background-color: var(--red-primary);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
}

.responsible-banner a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.responsible-banner a:hover {
    color: #ffebee;
}

/* Logo Styles */
.logo-5x {
    color: var(--blue-primary);
    font-weight: bold;
}

.logo-rummy {
    color: var(--red-primary);
    font-weight: bold;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

/* Account for responsible banner when navbar is sticky */
body:has(.responsible-banner) .navbar {
    top: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--blue-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue-primary);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--blue-primary) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
}

.btn-nav:hover {
    background-color: var(--blue-dark) !important;
}

.btn-nav::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background-color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    z-index: 2;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    line-height: 1.2;
}

.rummy-red {
    color: var(--red-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

.btn-telegram {
    background-color: var(--blue-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-telegram:hover {
    background-color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 104, 198, 0.3);
}

.btn-telegram i {
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon-small {
    font-size: 1.2rem;
    color: var(--blue-primary);
}

.stat-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.card-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 3.5rem;
    transform: rotate(-3deg);
    box-shadow: 
        0 0 0 4px rgba(138, 43, 226, 0.3),
        0 0 0 8px rgba(183, 28, 28, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    position: relative;
    background-color: white;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.card-container:hover {
    transform: rotate(-2deg) scale(1.02);
    box-shadow: 
        0 0 0 4px rgba(138, 43, 226, 0.4),
        0 0 0 8px rgba(183, 28, 28, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.card {
    width: 100%;
    min-height: 110px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s;
    aspect-ratio: 0.714; /* Card ratio width/height */
}

.card:hover {
    transform: translateY(-5px);
}

.card-red {
    color: var(--red-primary);
}

.card-black {
    color: var(--text-dark);
}

.card-container-text {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-top: 1.5rem;
}

/* Win Stats Section */
.win-stats {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--red-primary) 100%);
    color: white;
    padding: 60px 0;
}

.win-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    display: inline-block;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

section > .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%230168C6" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--blue-primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-top-color: var(--red-primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--blue-primary);
    display: inline-block;
}

.feature-card h3 {
    color: var(--blue-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* How to Play Section */
.how-to-play {
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.how-to-play::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="80" height="120" xmlns="http://www.w3.org/2000/svg"><rect width="50" height="70" x="15" y="25" fill="none" stroke="%23B71C1C" stroke-width="1.5" rx="4" opacity="0.08"/></svg>');
    background-size: 80px 120px;
    opacity: 0.4;
    z-index: 0;
}

.how-to-play .container {
    position: relative;
    z-index: 1;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: linear-gradient(135deg, rgba(1, 104, 198, 0.05) 0%, rgba(183, 28, 28, 0.05) 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--blue-primary);
    transform: translateY(-3px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--red-primary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url('data:image/svg+xml,<svg width="120" height="180" xmlns="http://www.w3.org/2000/svg"><rect width="70" height="95" x="25" y="40" fill="none" stroke="%230168C6" stroke-width="2" rx="6" opacity="0.06"/><text x="60" y="85" font-size="24" fill="%23B71C1C" text-anchor="middle" opacity="0.15">K</text></svg>');
    background-size: 120px 180px;
    opacity: 0.3;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--red-primary) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--blue-primary);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Limited Time Offer Section */
.offer-section {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--red-primary) 100%);
    color: white;
    padding: 80px 0;
}

.offer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.offer-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.offer-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.offer-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.offer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 300px;
    height: 400px;
    background-image: url('data:image/svg+xml,<svg width="150" height="200" xmlns="http://www.w3.org/2000/svg"><rect width="90" height="125" x="30" y="35" fill="white" stroke="%23B71C1C" stroke-width="2.5" rx="7" opacity="0.08"/><text x="75" y="90" font-size="28" fill="%23B71C1C" text-anchor="middle" opacity="0.2">Q</text></svg>');
    background-size: 150px 200px;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-btn {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
    border-top: 4px solid #25D366;
}

.telegram-btn {
    border-top: 4px solid #0088cc;
}

.call-btn {
    border-top: 4px solid var(--blue-primary);
}

.contact-icon {
    font-size: 2.5rem;
    display: inline-block;
}

.whatsapp-btn .contact-icon {
    color: #25D366;
}

.telegram-btn .contact-icon {
    color: #0088cc;
}

.call-btn .contact-icon {
    color: var(--blue-primary);
}

.contact-btn h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin: 0;
}

.contact-btn p {
    color: var(--text-light);
    margin: 0;
}

.contact-cta {
    background-color: var(--blue-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.whatsapp-btn:hover .contact-cta {
    background-color: #25D366;
}

.telegram-btn:hover .contact-cta {
    background-color: #0088cc;
}

.call-btn:hover .contact-cta {
    background-color: var(--red-primary);
}

.contact-form-section {
    margin-top: 4rem;
}

.form-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--red-primary);
}

.error-message {
    display: none;
    color: var(--red-primary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.char-count span {
    font-weight: 600;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--blue-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 104, 198, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--blue-primary);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--blue-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--blue-primary);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-disclaimer {
    margin-bottom: 1.5rem;
}

.footer-disclaimer h4 {
    color: var(--red-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.helpline {
    margin-top: 1rem;
}

.helpline a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 3% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--red-primary);
}

.modal-content h2 {
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.modal-content h3 {
    color: var(--red-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.modal-content ul {
    list-style: none;
    padding-left: 0;
}

.modal-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.modal-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: bold;
}

.modal-content a {
    color: var(--blue-primary);
    text-decoration: underline;
}

.modal-footer-note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    background: linear-gradient(135deg, rgba(1, 104, 198, 0.05) 0%, rgba(183, 28, 28, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 8px;
}

.modal-footer-note p {
    margin: 0;
    color: var(--text-dark);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cards {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }

    .card-container {
        transform: rotate(-2deg);
        padding: 2.5rem;
        max-width: 90%;
    }

    .card-display {
        gap: 12px;
        max-width: 100%;
    }

    .card {
        min-height: 100px;
        font-size: 1.8rem;
    }

    .card-container-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .win-title {
        font-size: 2rem;
    }

    .offer-title {
        font-size: 2rem;
    }

    .offer-subtitle {
        font-size: 1.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        justify-content: center;
    }

    .card-container {
        max-width: 95%;
        padding: 2rem;
    }

    .card {
        min-height: 90px;
        font-size: 1.6rem;
    }

    section {
        padding: 50px 0;
    }
}

/* Legal Pages Styles */
.legal-page {
    background-color: var(--bg-white);
    padding: 80px 0;
    min-height: 70vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 3px solid var(--blue-primary);
    padding-bottom: 1rem;
}

.legal-content h1 .logo-5x {
    color: var(--blue-primary);
}

.legal-content h1 .logo-rummy {
    color: var(--red-primary);
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
    font-weight: bold;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--red-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-section p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-section a {
    color: var(--blue-primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: var(--red-primary);
}

.legal-acknowledgment {
    background: linear-gradient(135deg, rgba(1, 104, 198, 0.05) 0%, rgba(183, 28, 28, 0.05) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
    border-left: 4px solid var(--blue-primary);
}

.legal-acknowledgment p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-acknowledgment p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .legal-section p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 50px 0;
    }

    .legal-content {
        padding: 1.5rem 1rem;
    }

    .legal-content h1 {
        font-size: 1.8rem;
    }
}