* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FF6B35;
            --secondary: #F7931E;
            --dark: #1a1a2e;
            --accent: #FFD700;
            --hero-bg: #2d2d44;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }

        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(255,107,53,0.3);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .nav-links li a:hover {
            background: rgba(255,255,255,0.2);
        }

        /* Mobile Auth Buttons */
        .mobile-auth-buttons {
            display: none;
            gap: 0.4rem;
            position: absolute;
            top: 50%;
            right: 60px;
            transform: translateY(-50%);
        }

        .auth-btn {
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.75rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .login-btn {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 1.5px solid white;
        }

        .register-btn {
            background: #ffd700;
            color: #764ba2;
            border: 1.5px solid #ffd700;
        }

        .auth-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
			  header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 0rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(255,107,53,0.3);
        }
		
            nav {
                padding: 1rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .custom-logo {
                width: 35px;
                height: 35px;
            }

            .mobile-menu-btn {
                display: block;
            }

            /* Show mobile auth buttons at top */
            .mobile-auth-buttons {
                display: flex;
                position: absolute;
                right: 60px;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                padding: 1rem 0;
                position: absolute;
                top: 100%;
                left: 0;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .nav-links li a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            /* Hide desktop login from menu */
            .nav-links li:last-child {
                display: none;
            }
        }

          .hero {
            background: linear-gradient(135deg, var(--hero-bg), #3d3d5c);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Animated background particles */
        .hero::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,215,0,0.15), transparent);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(247,147,30,0.15), transparent);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            animation: fadeInDown 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-section {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
            margin-top: 2rem;
        }

        /* Animated Register Button */
        .fancy-register-button {
            background: linear-gradient(145deg, #FFD700, #FFA500);
            color: var(--dark);
            padding: 1.8rem 3.5rem;
            border-radius: 20px;
            text-decoration: none;
            font-size: 1.6rem;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(255,215,0,0.4);
            border: 3px solid #FFF;
            display: inline-block;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s both;
        }

        @keyframes popIn {
            0% {
                opacity: 0;
                transform: scale(0.5);
            }
            70% {
                transform: scale(1.1);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Pulse animation */
        .fancy-register-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .fancy-register-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .fancy-register-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(255,215,0,0.7);
        }

        /* Glowing effect */
        @keyframes glow {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(255,215,0,0.4),
                            0 0 20px rgba(255,215,0,0.3);
            }
            50% {
                box-shadow: 0 10px 40px rgba(255,215,0,0.6),
                            0 0 40px rgba(255,215,0,0.5);
            }
        }

        .fancy-register-button {
            animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s both,
                       glow 2s ease-in-out 1s infinite;
        }

        .emoji-badge {
            font-size: 2rem;
            display: inline-block;
            animation: bounce 1s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .button-sparkle {
            position: absolute;
            top: -5px;
            right: -5px;
            font-size: 1.5rem;
            animation: sparkle 1.5s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { 
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
            50% { 
                opacity: 0.5;
                transform: scale(1.2) rotate(180deg);
            }
        }

        /* Attractive Offer Banner */
        .offer-banner {
            background: linear-gradient(145deg, #ffffff, #fff8e1);
            color: var(--dark);
            padding: 2rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(255,107,53,0.3);
            max-width: 750px;
            border: 3px solid var(--secondary);
            text-align: left;
            line-height: 1.9;
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.8s ease-out 0.6s both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animated gradient border */
        .offer-banner::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, 
                var(--primary), 
                var(--secondary), 
                var(--accent),
                var(--primary));
            background-size: 300% 300%;
            border-radius: 20px;
            z-index: -1;
            animation: gradientMove 3s ease infinite;
        }

        @keyframes gradientMove {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .offer-banner::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(145deg, #ffffff, #fff8e1);
            border-radius: 17px;
            z-index: -1;
        }

        .offer-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.2rem;
            padding: 1rem;
            background: rgba(255,107,53,0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .offer-row:hover {
            background: rgba(255,107,53,0.1);
            transform: translateX(5px);
        }

        .offer-row:last-child {
            margin-bottom: 0;
        }

        .offer-icon {
            font-size: 2.5rem;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .offer-text {
            flex: 1;
        }

        .offer-banner strong {
            color: var(--primary);
            font-size: 1.3rem;
            display: block;
            margin-bottom: 0.3rem;
        }

        .offer-amount {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .limited-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff416c, #ff4b2b);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            animation: pulse 2s ease-in-out infinite;
            margin-left: 0.5rem;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Floating coins animation */
        .coin {
            position: absolute;
            font-size: 2rem;
            opacity: 0;
            animation: floatCoin 4s ease-in-out infinite;
        }

        .coin:nth-child(1) { left: 10%; animation-delay: 0s; }
        .coin:nth-child(2) { left: 30%; animation-delay: 1s; }
        .coin:nth-child(3) { left: 50%; animation-delay: 2s; }
        .coin:nth-child(4) { left: 70%; animation-delay: 1.5s; }
        .coin:nth-child(5) { left: 90%; animation-delay: 0.5s; }

        @keyframes floatCoin {
            0% {
                bottom: -50px;
                opacity: 0;
                transform: translateY(0) rotate(0deg);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                bottom: 100%;
                opacity: 0;
                transform: translateY(-20px) rotate(360deg);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 3rem 1.5rem;
                min-height: auto;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .fancy-register-button {
                font-size: 1.2rem;
                padding: 1.3rem 2.5rem;
            }

            .offer-banner {
                padding: 1.5rem;
                font-size: 0.95rem;
            }

            .offer-banner strong {
                font-size: 1.1rem;
            }

            .offer-amount {
                font-size: 1.5rem;
            }

            .offer-icon {
                font-size: 2rem;
            }
        }

        .offer-banner strong {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .games-section {
            background: #f9f9f9;
            padding: 4rem 2rem;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .game-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s;
        }

        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255,107,53,0.3);
            border-color: var(--secondary);
        }

        .game-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
        }

        .game-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent);
            color: var(--dark);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .game-info {
            padding: 1.5rem;
        }

        .game-info h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .game-info p {
            color: #666;
            margin-bottom: 1rem;
        }

        .game-rating {
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 2px solid #f0f0f0;
            cursor: pointer;
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 12px 30px rgba(255,107,53,0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .how-to-section {
            background: linear-gradient(135deg, #fff, #fff5eb);
            padding: 4rem 2rem;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            position: relative;
            border-left: 5px solid var(--secondary);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .step-image {
            width: 100%;
            max-width: 300px;
            height: 400px;
            margin: 1.5rem auto;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            font-size: 3rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
.step-image img {
			max-width: 90%;
			max-height: 90%;
			height: auto;
			width: auto;
			object-fit: contain;
		}
        .step-card h3 {
            margin-top: 1rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-size: 1.3rem;
        }

        .step-card p {
            color: #666;
            line-height: 1.8;
        }

        .blog-section {
            padding: 4rem 2rem;
            background: white;
        }
/* ===============================
   TRUST / ABOUT / FAQ SECTIONS
   =============================== */

.trust-section,
.about-site,
.faq-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 24px;
    background: linear-gradient(135deg, var(--hero-bg), #3d3d5c);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Headings */
.trust-section h2,
.about-site h2,
.faq-section h2 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    color: #ffcc00;
    line-height: 1.3;
}

/* FAQ Sub Headings */
.faq-section h3 {
    font-size: 1.1rem;
    margin-top: 18px;
    margin-bottom: 6px;
    color: #ffffff;
}

/* Paragraphs */
.trust-section p,
.about-site p,
.faq-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 10px;
}

/* Highlight Important Text */
.trust-section strong,
.about-site strong {
    color: #ffffff;
}

/* ===============================
   MOBILE RESPONSIVE
   =============================== */

@media (max-width: 768px) {

    .trust-section,
    .about-site,
    .faq-section {
        margin: 20px 12px;
        padding: 18px;
        border-radius: 12px;
    }

    .trust-section h2,
    .about-site h2,
    .faq-section h2 {
        font-size: 1.35rem;
    }

    .faq-section h3 {
        font-size: 1rem;
    }

    .trust-section p,
    .about-site p,
    .faq-section p {
        font-size: 0.9rem;
    }
}

/* ===============================
   VERY SMALL DEVICES (PHONES)
   =============================== */

@media (max-width: 480px) {

    .trust-section,
    .about-site,
    .faq-section {
        padding: 16px;
    }

    .trust-section h2,
    .about-site h2,
    .faq-section h2 {
        font-size: 1.25rem;
    }

    .faq-section h3 {
        font-size: 0.95rem;
    }
}

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 2px solid #f0f0f0;
            transition: all 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
        }

        .blog-image {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-date {
            color: var(--secondary);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .blog-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }

        .blog-content p {
            color: #666;
            margin-bottom: 1rem;
        }

        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
        }

        .download-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .download-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .platform-btn {
            background: white;
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: 15px;
            text-decoration: none;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }

        .platform-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
        }

        @media (max-width: 968px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, var(--primary), var(--secondary));
                flex-direction: column;
                padding: 1rem;
                gap: 0.5rem;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: relative;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .fancy-register-button {
                font-size: 1.2rem;
                padding: 1.2rem 2rem;
            }

            .offer-banner {
                font-size: 0.9rem;
                padding: 1rem 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .games-grid {
                grid-template-columns: 1fr;
            }
            
            .steps-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            
            .container {
                padding: 2rem 1rem;
            }
            
            .step-image {
                height: 300px;
            }
        }
		
		.step-cta {
    margin-top: 1.8rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #fff8e1, #ffefd0);
    border-radius: 14px;
    border-left: 5px solid var(--secondary);
    text-align: center;
}

.step-highlight {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-highlight strong {
    color: var(--primary);
}

.step-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 1.05rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(255,107,53,0.35);
    transition: all 0.3s ease;
}

.step-cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 28px rgba(255,107,53,0.55);
}
