
        /* ===== CSS Variables ===== */
    :root {
    --bg-primary: #010f10;
    --bg-secondary: #0d2626;
    --bg-tertiary: #144040;
    --gold-primary: #008080;
    --gold-light: #00b3b3;
    --gold-dark: #006666;
    --red-primary: #00ffff;
    --red-dark: #00cccc;
    --text-primary: #eaeaea;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #2a4d4d;
    --shadow-gold: 0 0 20px rgba(0, 128, 128, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.35);
    --transition-smooth: all 0.3s ease;
    --border-radius: 12px;
}


        /* ===== Reset & Base Styles ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-smooth);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
            transition: var(--transition-smooth);
        }

        input, textarea, select {
            font-family: inherit;
            border: none;
            outline: none;
        }

        /* ===== Utility Classes ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-center {
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--gold-primary);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--border-radius);
            transition: var(--transition-smooth);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            color: var(--bg-primary);
            box-shadow: var(--shadow-gold);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--gold-primary);
            border: 2px solid var(--gold-primary);
        }

        .btn-secondary:hover {
            background: var(--gold-primary);
            color: var(--bg-primary);
        }

        /* ===== Top Notice Bar ===== */
        .top-notice {
            background: linear-gradient(90deg, var(--red-dark), var(--red-primary));
            color: var(--text-primary);
            text-align: center;
            padding: 12px 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .top-notice span {
            margin-right: 5px;
        }

        /* ===== Header Section ===== */
        .header {
            position: fixed;
            top: 44px;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .header.scrolled {
            top: 0;
            box-shadow: var(--shadow-card);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .logo-text {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-link {
            color: var(--text-secondary);
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-primary);
            transition: var(--transition-smooth);
        }

        .nav-link:hover {
            color: var(--gold-primary);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            padding: 5px;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            border-radius: 3px;
            transition: var(--transition-smooth);
        }

        /* ===== Hero Section ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            position: relative;
            padding-top: 120px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 25px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
            50% { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-highlights {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 45px;
            flex-wrap: wrap;
        }

        .hero-highlight {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .hero-highlight-icon {
            width: 24px;
            height: 24px;
            color: var(--gold-primary);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* ===== About Section ===== */
        .about {
            background: var(--bg-secondary);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-primary));
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            border: 1px solid var(--border-color);
        }

        .about-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--gold-primary);
        }

        .about-content p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .about-values {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 35px;
        }

        .about-value {
            text-align: center;
            padding: 20px;
            background: var(--bg-primary);
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .about-value:hover {
            border-color: var(--gold-primary);
            transform: translateY(-5px);
        }

        .about-value-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 12px;
            color: var(--gold-primary);
        }

        .about-value h4 {
            font-size: 1rem;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        /* ===== Games Section ===== */
        .games {
            background: var(--bg-primary);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
        }

        .game-card {
            background: var(--bg-secondary);
            border-radius: var(--border-radius);
            padding: 30px 20px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        .game-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold-primary);
            box-shadow: var(--shadow-gold);
        }

        .game-card-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
        }

        .game-card h3 {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 10px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .game-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* ===== Why Choose Us Section ===== */
        .why-choose {
            background: var(--bg-secondary);
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
        }

        .why-card {
            background: var(--bg-primary);
            border-radius: var(--border-radius);
            padding: 30px 25px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .why-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold-primary);
        }

        .why-card-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 18px;
            color: var(--gold-primary);
        }

        .why-card h3 {
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .why-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* ===== Latest Betting Section ===== */
        .latest-betting {
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .latest-betting::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
        }

        .betting-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .betting-card {
            background: var(--bg-secondary);
            border-radius: var(--border-radius);
            padding: 30px;
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .betting-card:hover {
            border-color: var(--red-primary);
        }

        .betting-badge {
            display: inline-block;
            background: var(--red-primary);
            color: var(--text-primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .betting-card h3 {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .betting-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .betting-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }

        .betting-info span {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .betting-cta {
            color: var(--gold-primary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ===== Testimonials Section ===== */
        .testimonials {
            background: var(--bg-secondary);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: var(--bg-primary);
            border-radius: var(--border-radius);
            padding: 35px;
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold-primary);
        }

        .testimonial-stars {
            color: var(--gold-primary);
            font-size: 1.2rem;
            margin-bottom: 20px;
            letter-spacing: 3px;
        }

        .testimonial-quote {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin-bottom: 25px;
            font-style: italic;
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--bg-primary);
            font-size: 1.1rem;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* ===== Contact Section ===== */
        .contact {
            background: var(--bg-primary);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }

        .contact-info h2 {
            font-size: 2.2rem;
            color: var(--gold-primary);
            margin-bottom: 20px;
        }

        .contact-info > p {
            color: var(--text-secondary);
            margin-bottom: 35px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            background: rgba(251, 191, 36, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--gold-primary);
        }

        .contact-item-content h4 {
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 5px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .contact-item-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .contact-item-content a {
            color: var(--gold-primary);
        }

        .contact-item-content a:hover {
            text-decoration: underline;
        }

        .contact-form-wrapper {
            background: var(--bg-secondary);
            border-radius: var(--border-radius);
            padding: 40px;
            border: 1px solid var(--border-color);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            color: var(--text-primary);
            font-weight: 500;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .form-input {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

        .form-input:focus {
            border-color: var(--gold-primary);
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
        }

        .form-input::placeholder {
            color: var(--text-muted);
        }

        textarea.form-input {
            resize: vertical;
            min-height: 140px;
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            font-size: 1.1rem;
        }

        .form-message {
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            display: none;
        }

        .form-message.success {
            display: block;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid #22c55e;
            color: #22c55e;
        }

        .form-message.error {
            display: block;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid #ef4444;
            color: #ef4444;
        }

        /* ===== Newsletter Section ===== */
        .newsletter {
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .newsletter-container {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .newsletter h2 {
            font-size: 2.2rem;
            color: var(--gold-primary);
            margin-bottom: 15px;
        }

        .newsletter > p {
            color: var(--text-secondary);
            margin-bottom: 35px;
        }

        .newsletter-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .newsletter-form .form-group:first-child {
            grid-column: 1 / -1;
        }

        .newsletter-form .form-group:nth-child(2) {
            grid-column: 1 / -1;
        }

        .newsletter-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            text-align: left;
        }

        .newsletter-checkbox input {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            accent-color: var(--gold-primary);
            cursor: pointer;
        }

        .newsletter-checkbox label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            cursor: pointer;
        }

        .newsletter-checkbox a {
            color: var(--gold-primary);
            text-decoration: underline;
        }

        .newsletter-form .btn {
            grid-column: 1 / -1;
        }

        .newsletter-message {
            padding: 15px;
            border-radius: 8px;
            display: none;
        }

        .newsletter-message.success {
            display: block;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid #22c55e;
            color: #22c55e;
        }

        /* ===== Privacy Policy & Terms Sections ===== */
        .policy-section {
            background: var(--bg-primary);
        }

        .policy-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .policy-content h2 {
            font-size: 2rem;
            color: var(--gold-primary);
            margin-bottom: 25px;
            text-align: center;
        }

        .policy-content h3 {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin: 30px 0 15px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .policy-content p {
            color: var(--text-secondary);
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .policy-content ul {
            list-style: disc;
            margin-left: 25px;
            margin-bottom: 20px;
        }

        .policy-content li {
            color: var(--text-secondary);
            margin-bottom: 10px;
            line-height: 1.7;
        }

        /* ===== Footer Section ===== */
        .footer {
            background: var(--bg-secondary);
            padding: 60px 0 30px;
            border-top: 1px solid var(--border-color);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: var(--bg-tertiary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
        }

        .footer-social a:hover {
            background: var(--gold-primary);
            color: var(--bg-primary);
        }

        .footer-links h4 {
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: var(--text-muted);
            font-size: 0.95rem;
            transition: var(--transition-smooth);
        }

        .footer-links a:hover {
            color: var(--gold-primary);
            padding-left: 5px;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .footer-notice {
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid var(--red-primary);
            border-radius: 8px;
            padding: 15px 20px;
            margin-bottom: 25px;
            text-align: center;
        }

        .footer-notice p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .footer-notice a {
            color: var(--red-primary);
            text-decoration: underline;
        }

        .footer-copyright {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-copyright a {
            color: var(--gold-primary);
        }

        /* ===== Mobile Responsive ===== */
        @media (max-width: 1024px) {
            .games-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .why-choose-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--bg-secondary);
                flex-direction: column;
                padding: 80px 30px 30px;
                gap: 20px;
                transition: var(--transition-smooth);
                border-left: 1px solid var(--border-color);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-toggle {
                display: flex;
                z-index: 1001;
            }

            .nav-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .nav-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .nav-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .hero-highlights {
                gap: 20px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-values {
                grid-template-columns: 1fr;
            }

            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-choose-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .betting-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .newsletter-form {
                grid-template-columns: 1fr;
            }

            .newsletter-form .form-group:first-child,
            .newsletter-form .form-group:nth-child(2),
            .newsletter-form .btn {
                grid-column: 1;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand {
                max-width: 100%;
            }

            .footer-social {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .section-padding {
                padding: 60px 0;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .hero {
                padding-top: 100px;
                padding-bottom: 60px;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }

            .why-choose-grid {
                grid-template-columns: 1fr;
            }

            .contact-form-wrapper {
                padding: 25px;
            }
        }
    