/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

:root {
    --primary-bg: #0a0a2a;
    --secondary-bg: #000000;
    --nav-bg: #1B1B2A;
    --nav-bg-dark: #0f0f1a;
    --blue: #f7d341;
    --blue-bright: #ffd700;
    --blue-dark: #d4b030;
    --blue-gradient-start: #ffd700;
    --blue-gradient-end: #d4af37;
    --accent-blue: #3e6097;
    --text-white: #ffffff;
    --text-gray: #DEDEDE;
    --text-light-gray: #b0b0b0;
    --border-blue: #f7d341;
    --gradient-hero: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 50%, #000000 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background: url('../images/page-background.png') center center / cover no-repeat fixed;
    background-color: #0a0a1a;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    position: relative;
}

/* Prevent horizontal overflow for media */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
}

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

/* ============================================
   HEADER/NAVIGATION
   ============================================ */
.header {
    background: transparent;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    position: relative;
    background: transparent;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50px;
    padding: 14px 35px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(247, 211, 65, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        inset 0 -1px 1px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.navbar::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: radial-gradient(ellipse at center, rgba(247, 211, 65, 0.15) 0%, transparent 70%);
    border-radius: 50px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(8px);
    pointer-events: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    box-shadow: 0 0 10px rgba(247, 211, 65, 0.2);
}

.logo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    width: 32px;
    height: 32px;
    position: relative;
}

.logo-shape {
    position: relative;
}

.logo-square {
    border: 2px solid var(--blue);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    box-shadow: 
        0 0 6px rgba(247, 211, 65, 0.6),
        inset 0 0 4px rgba(247, 211, 65, 0.2);
}

.logo-circle {
    border: 2px solid var(--blue);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 
        0 0 6px rgba(247, 211, 65, 0.6),
        inset 0 0 4px rgba(247, 211, 65, 0.2);
}

.logo-triangle {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid rgba(255, 255, 255, 0.95);
    position: relative;
    filter: drop-shadow(0 0 3px var(--blue));
}

.logo-triangle::after {
    content: '';
    position: absolute;
    top: 1px;
    left: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid var(--blue);
    filter: drop-shadow(0 0 2px var(--blue));
}

.logo-cross {
    position: relative;
}

.logo-cross::before,
.logo-cross::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1.5px solid var(--blue);
    box-shadow: 
        0 0 6px rgba(247, 211, 65, 0.6),
        inset 0 0 3px rgba(247, 211, 65, 0.2);
}

.logo-cross::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2.5px;
    transform: translateY(-50%);
}

.logo-cross::after {
    left: 50%;
    top: 0;
    width: 2.5px;
    height: 100%;
    transform: translateX(-50%);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-line1,
.logo-line2 {
    font-size: 16px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 1.2px;
    text-shadow: 
        0 0 8px rgba(247, 211, 65, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.logo-line2 {
    margin-top: -2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0 auto;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    color: #DEDEDE;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.3px;
}

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

.nav-links a.active {
    color: var(--blue);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    right: -5px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--blue) 20%, var(--blue) 80%, transparent 100%);
    box-shadow: 
        0 0 8px rgba(247, 211, 65, 0.8),
        0 0 16px rgba(247, 211, 65, 0.4),
        0 2px 4px rgba(247, 211, 65, 0.3);
    animation: glow-pulse 2s ease-in-out infinite;
}

.nav-links a.active::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: radial-gradient(ellipse at center, rgba(247, 211, 65, 0.6) 0%, transparent 70%);
    filter: blur(4px);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.btn-signup {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 30%, #d4af37 70%, #b8941f 100%);
    color: #0a0a0a;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        0 4px 15px rgba(247, 211, 65, 0.5),
        0 0 25px rgba(247, 211, 65, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
    overflow: hidden;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    text-decoration: none;
}

/* Mobile Menu Toggle Button */
.mobile-signup {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--blue);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive hamburger animation adjustments */
@media (max-width: 480px) {
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 360px) {
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

.btn-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
    border-radius: 50px;
    pointer-events: none;
}

.btn-signup::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 25px rgba(247, 211, 65, 0.6),
        0 0 35px rgba(247, 211, 65, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.5),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffdd44 0%, #ffed4e 30%, #e6c435 70%, #d4b030 100%);
}

.btn-signup:hover::before {
    background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.15) 40%, transparent 70%);
}

.btn-signup:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 10px rgba(247, 211, 65, 0.4),
        0 0 15px rgba(247, 211, 65, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    /* background: linear-gradient(180deg, #0a0a2a 0%, #1a1a3a 30%, #0a0a1a 70%, #000000 100%); */
    background: transparent;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(255, 20, 147, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 60%, rgba(138, 43, 226, 0.02) 0%, transparent 50%);
    pointer-events: none;
    filter: blur(80px); */
}

.hero::after {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none; */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
    min-height: 600px;
}

.hero-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: 4.4rem;
    line-height: 100px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #FFD700;
    margin-bottom: 24px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 1px 2px rgba(255, 215, 0, 0.3);
}

.hero-description {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 30px;
    letter-spacing: 0px;
    color: #E0E0E0;
    margin-bottom: 35px;
    text-shadow: none;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 30%, #D4AF37 70%, #B8941F 100%);
    color: #1A1A2E;
    font-weight: 700;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3),
        inset 0 -1px 1px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        inset 0 -1px 1px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #FFDD44 0%, #FFED4E 30%, #E6C435 70%, #D4B030 100%);
}

.btn-outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 215, 0, 0.05);
    color: #FFD700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-size: 15px;
    color: #E0E0E0;
    margin-top: 10px;
    font-weight: 400;
    text-shadow: none;
}

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

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

.wheel-container {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.wheel-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
}

.wheel-pointer {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid #000000;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    z-index: 3;
    filter: drop-shadow(2px 0 4px rgba(0, 0, 0, 0.5));
}

.coins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.coin {
    position: absolute;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #1A1A2E;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    animation: coin-float 4s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.coin-1 {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 15%;
    right: 5%;
    animation-delay: 0.5s;
}

.coin-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.coin-4 {
    top: 50%;
    right: -5%;
    animation-delay: 1.5s;
}

.coin-5 {
    bottom: 10%;
    right: 15%;
    animation-delay: 2s;
}

.coin-6 {
    top: 30%;
    left: -5%;
    animation-delay: 2.5s;
}

@keyframes coin-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-25px) rotate(180deg) scale(1.1);
        opacity: 1;
    }
}

.win-big {
    font-family: 'Exo 2', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 35px 0 25px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 1px 2px rgba(255, 215, 0, 0.3);
}

.btn-hero-right {
    padding: 12px 36px;
    font-size: 16px;
}

/* ============================================
   LATEST EVENTS SECTION
   ============================================ */
.latest-events {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, rgba(38, 38, 77, 0.8) 0%, rgba(26, 26, 51, 1) 70%, rgba(20, 20, 40, 1) 100%);
    position: relative;
    overflow: hidden;
}

.latest-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 85% 15%, rgba(247, 211, 65, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 15% 85%, rgba(247, 211, 65, 0.03) 0%, transparent 40%);
    pointer-events: none;
    filter: blur(60px);
}

.section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.title-part-white {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    color: #FFFFFF;
}

.title-part-blue {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    color: #FFD700;
}

.latest-events .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #CCCCCC;
    margin-top: 15px;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.events-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.carousel-arrow {
    background-color: rgba(30, 30, 64, 0.6);
    border: 1px solid #FFD700;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-weight: 300;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
    background-color: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    color: #FFD700;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex: 1;
}

.event-card {
    background: linear-gradient(135deg, #1E1E40 0%, #1A1A35 50%, #1E1E40 100%);
    border: 2px solid #FFD700;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
}

.event-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #FFD700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-icon i {
    display: inline-block;
    color: #FFD700;
}

.event-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.event-description {
    font-size: 14px;
    color: #CCCCCC;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.btn-more {
    font-family: 'Inter', sans-serif;
    background-color: #1E1E40;
    color: #FFFFFF;
    border: 1px solid #FFD700;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.btn-more:hover {
    background-color: rgba(255, 215, 0, 0.15);
    color: #FFFFFF;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.btn-view-all {
    font-family: 'Inter', sans-serif;
    padding: 14px 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #D4AF37 100%);
    color: #1A1A2E;
    border: none;
    border-radius: 25px;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.btn-view-all:hover {
    background: linear-gradient(135deg, #FFDD44 0%, #FFED4E 50%, #E6C435 100%);
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   GAMES COLLECTION SECTION
   ============================================ */
.games-collection {
    padding: 80px 0;
    background: linear-gradient(180deg, #162136 0%, #1F2E4A 20%, #243556 50%, #1F2E4A 80%, #162136 100%);
    position: relative;
}

.games-collection .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.games-collection .section-header > div {
    width: 100%;
    margin-bottom: 20px;
}

.games-collection .section-header .view-all-link {
    display: none;
}

.games-collection .section-title {
    text-transform: none;
    letter-spacing: 0px;
    margin-bottom: 15px;
}

.games-collection .section-subtitle {
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 15px;
    font-weight: 400;
    line-height: 1.6;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 10px;
}

.view-all-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #FFD700;
}

.games-subsection {
    margin-bottom: 60px;
}

.subsection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 40px;
}

.subsection-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #FFFFFF;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game-card {
    background: linear-gradient(135deg, #1a1a3a 0%, #0a0a2a 100%);
    border: 2px solid var(--blue);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(247, 211, 65, 0.3);
}

.game-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2a2a4a 0%, #1a1a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-placeholder {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-placeholder i {
    font-size: 80px;
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--blue);
    color: var(--primary-bg);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.rating {
    font-family: 'Inter', sans-serif;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating i {
    color: #FFD700;
    font-size: 12px;
}

.game-info {
    padding: 20px;
}

.game-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 10px;
}

.game-category {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    background-color: var(--accent-blue);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
}

.game-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light-gray);
}

.stat-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-icon i {
    color: var(--blue);
    font-size: 14px;
}

.btn-play {
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

/* ============================================
   EARN REWARDS SECTION
   ============================================ */
.earn-rewards {
    padding: 100px 0;
    /* background: linear-gradient(180deg, #1a2332 0%, #0f1419 100%); */
    position: relative;
}

.earn-rewards .section-title {
    text-transform: none;
    letter-spacing: 0px;
    margin-bottom: 20px;
}

.earn-rewards .section-subtitle {
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.reward-card {
    /* background: #2a2a3a; */
    border: 1px solid #FFD700;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.reward-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    border-color: #FFD700;
}

.reward-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.reward-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.reward-icon i {
    color: var(--text-white);
    font-size: 28px;
}

.reward-icon.instagram i {
    color: #E1306C;
}

.reward-icon.friend i {
    color: #3e6097;
}

.reward-icon.calendar i {
    color: #FF9800;
}

.reward-icon.instagram {
    background-color: rgba(225, 48, 108, 0.2);
}

.reward-icon.friend {
    background-color: rgba(62, 96, 151, 0.2);
}

.reward-icon.calendar {
    background-color: rgba(255, 152, 0, 0.2);
}

.reward-labels {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.label-easy {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #1A1A2E;
    padding: 6px 14px;
    background-color: #4A90E2;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.label-time {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #FFFFFF;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
}

.label-time i {
    font-size: 12px;
    color: #FFFFFF;
}

.reward-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.3;
}

.reward-description {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 400;
}

.reward-credits {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: 20px;
    line-height: 1.2;
}

.btn-start {
    font-family: 'Inter', sans-serif;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #D4AF37 100%);
    color: #1A1A2E;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 
        0 2px 8px rgba(255, 215, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-start:hover {
    background: linear-gradient(135deg, #FFDD44 0%, #FFED4E 50%, #E6C435 100%);
    box-shadow: 
        0 4px 12px rgba(255, 215, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.start-earning-container {
    text-align: center;
    margin-top: 40px;
}

.btn-start-earning {
    font-family: 'Inter', sans-serif;
    padding: 16px 50px;
    font-size: 18px;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #D4AF37 100%);
    color: #1A1A2E;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-start-earning:hover {
    background: linear-gradient(135deg, #FFDD44 0%, #FFED4E 50%, #E6C435 100%);
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 100px 0;
    /* background: linear-gradient(180deg, #0a0d17 0%, #1a1f2e 30%, #0f1419 70%, #000000 100%); */
    position: relative;
    overflow: hidden;
}

.how-it-works .section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 48px;
    font-weight: 900;
    text-transform: none;
    letter-spacing: 0px;
    margin-bottom: 20px;
    text-align: center;
}

.how-it-works .title-part-white {
    color: #FFFFFF;
    font-weight: 900;
}

.how-it-works .title-part-blue {
    color: #FDD700;
    font-weight: 900;
}

.how-it-works .section-subtitle {
    color: #CCCCCC;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 80px;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.step-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    min-height: 0;
}

.step-hexagon {
    width: 200px;
    height: 200px;
    background: linear-gradient(180deg, #1a1f2e 0%, #0a0d17 100%);
    border: 4px solid #FFD700;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px auto;
    position: relative;
    flex-shrink: 0;
    align-self: center;
}

.step-hexagon::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 200, 0.4) 0%, rgba(255, 215, 0, 0.2) 50%, transparent 100%);
    filter: blur(12px);
    z-index: -1;
}

.step-icon {
    font-size: 56px;
    z-index: 1;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.step-icon i {
    font-size: 56px;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.step-content {
    background: #0a0d17;
    border: 1px solid #FFD700;
    border-radius: 12px;
    padding: 30px;
    margin-top: -20px;
    position: relative;
    z-index: 0;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    align-self: stretch;
}

.step-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--secondary-bg);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-light-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(247, 211, 65, 0.1);
    border: 1px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--blue);
}

.social-icon i {
    font-size: 18px;
    color: var(--blue);
}

.social-icon:hover {
    background-color: var(--blue);
    transform: translateY(-3px);
}

.social-icon:hover i {
    color: var(--primary-bg);
}

.footer-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(247, 211, 65, 0.3);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: var(--text-light-gray);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--blue);
}

.btn-subscribe {
    padding: 12px 24px;
    white-space: nowrap;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright,
.powered-by {
    font-size: 12px;
    color: var(--text-light-gray);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Medium screens (992px) */
@media (max-width: 992px) {
    .navbar {
        padding: 12px 25px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .btn-signup {
        padding: 10px 24px;
        font-size: 13px;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
    }

    .logo-grid {
        width: 30px;
        height: 30px;
    }

    .logo-line1,
    .logo-line2 {
        font-size: 15px;
    }
}

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 15px 0;
    }

    .navbar {
        padding: 12px 25px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right {
        order: -1;
    }

    .hero-title {
        font-size: 70px;
        line-height: 80px;
    }

    .hero-description {
        font-size: 24px;
        line-height: 28px;
    }

    .events-grid,
    .rewards-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Mobile and Tablet (768px) */
@media (max-width: 768px) {
    /* Navigation - Mobile Menu */
    .header {
        padding: 12px 0;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 32px;
        height: 32px;
    }

    .hamburger-line {
        height: 3px;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 10px 18px;
        gap: 12px;
        border-radius: 30px;
    }

    .logo {
        gap: 10px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
    }

    .logo-grid {
        width: 28px;
        height: 28px;
    }

    .logo-line1,
    .logo-line2 {
        font-size: 15px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
        margin: 12px 0 0 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9);
        border: 1px solid rgba(255, 215, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li.mobile-signup {
        border-top: 1px solid rgba(255, 215, 0, 0.1);
        margin-top: 8px;
        padding-top: 0;
    }

    .nav-links a {
        display: block;
        padding: 14px 20px;
        font-size: 15px;
        width: 100%;
        text-align: left;
    }

    .nav-links a.active::after,
    .nav-links a.active::before {
        display: none;
    }

    .nav-links a.active {
        background: rgba(255, 215, 0, 0.08);
        padding-left: 25px;
    }

    .desktop-signup {
        display: none !important;
    }

    .mobile-signup {
        display: block !important;
        width: 100%;
        margin-top: 0;
        padding-top: 0;
    }

    .mobile-signup .btn-signup-mobile {
        display: block;
        width: 100%;
        padding: 15px 20px;
        background: transparent;
        color: #DEDEDE;
        border: none;
        border-radius: 0;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 500;
        text-align: left;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: none;
        position: relative;
        letter-spacing: 0.3px;
    }

    .mobile-signup .btn-signup-mobile:hover {
        color: var(--blue);
        background: rgba(255, 215, 0, 0.05);
        transform: none;
        box-shadow: none;
    }

    .mobile-signup .btn-signup-mobile.active {
        color: var(--blue);
    }

    .mobile-signup .btn-signup-mobile.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--blue) 20%, var(--blue) 80%, transparent 100%);
        box-shadow: 
            0 0 8px rgba(247, 211, 65, 0.8),
            0 0 16px rgba(247, 211, 65, 0.4);
    }

    /* Hero Section */
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 48px;
        line-height: 56px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 140px;
    }

    .win-big {
        font-size: 36px;
        margin: 25px 0 20px;
    }

    .wheel-image {
        max-width: 250px;
    }

    /* Sections */
    .section-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .latest-events,
    .games-collection,
    .earn-rewards,
    .how-it-works {
        padding: 60px 0;
    }

    /* Events Section */
    .events-carousel {
        flex-direction: column;
        gap: 20px;
    }

    .carousel-arrow {
        position: static;
        width: 50px;
        height: 50px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Games Section */
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-all-link {
        margin-top: 15px;
    }

    /* Rewards Section */
    .rewards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* How It Works */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-hexagon {
        width: 120px;
        height: 120px;
    }

    .step-icon i {
        font-size: 48px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 10px 0;
    }

    .navbar {
        padding: 8px 15px;
        gap: 10px;
        border-radius: 25px;
    }

    .logo {
        gap: 8px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-grid {
        width: 26px;
        height: 26px;
    }

    .logo-line1,
    .logo-line2 {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .mobile-menu-toggle {
        width: 28px;
        height: 28px;
    }

    .hamburger-line {
        height: 2.5px;
    }

    .nav-links {
        padding: 12px 0;
        margin-top: 10px;
        border-radius: 12px;
    }

    .nav-links a {
        padding: 12px 18px;
        font-size: 14px;
    }

    .nav-links a.active {
        padding-left: 22px;
    }

    .mobile-signup .btn-signup-mobile {
        padding: 12px 18px;
        font-size: 15px;
    }

    /* Hero */
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 22px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        width: 100%;
    }

    .win-big {
        font-size: 28px;
    }

    .wheel-image {
        max-width: 200px;
    }

    /* Sections */
    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .latest-events,
    .games-collection,
    .earn-rewards,
    .how-it-works {
        padding: 50px 0;
    }

    /* Event Cards */
    .event-card {
        padding: 20px;
    }

    .event-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .event-title {
        font-size: 20px;
    }

    .event-description {
        font-size: 13px;
    }

    /* Game Cards */
    .game-image {
        height: 150px;
    }

    .game-placeholder i {
        font-size: 60px;
    }

    .game-title {
        font-size: 16px;
    }

    /* Reward Cards */
    .reward-card {
        padding: 20px;
    }

    .reward-icon {
        width: 50px;
        height: 50px;
    }

    .reward-icon i {
        font-size: 24px;
    }

    /* Steps */
    .step-hexagon {
        width: 100px;
        height: 100px;
    }

    .step-icon i {
        font-size: 40px;
    }

    .step-content {
        padding: 20px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 13px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-more,
    .btn-play,
    .btn-start {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 14px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
    .header {
        padding: 8px 0;
    }

    .navbar {
        padding: 6px 12px;
        border-radius: 20px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-grid {
        width: 24px;
        height: 24px;
    }

    .logo-line1,
    .logo-line2 {
        font-size: 12px;
    }

    .mobile-menu-toggle {
        width: 26px;
        height: 26px;
    }

    .hamburger-line {
        height: 2px;
    }

    .nav-links {
        padding: 10px 0;
        margin-top: 8px;
    }

    .nav-links a {
        padding: 11px 15px;
        font-size: 13px;
    }

    .nav-links a.active {
        padding-left: 20px;
    }

    .mobile-signup .btn-signup-mobile {
        padding: 11px 15px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 38px;
    }

    .section-title {
        font-size: 24px;
    }

    .container {
        padding: 0 12px;
    }
}

/* ============================================
   CONTENT PAGES STYLES
   ============================================ */
.page-header {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(38, 38, 77, 0.3) 0%, transparent 70%);
}

.page-header .section-title {
    margin-bottom: 15px;
    font-size: 36px;
}

.page-header .section-subtitle {
    font-size: 16px;
    color: #CCCCCC;
    max-width: 600px;
    margin: 0 auto;
}

/* Legacy page-hero for backward compatibility - will be replaced */
.page-hero {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(38, 38, 77, 0.3) 0%, transparent 70%);
}

.page-hero .section-title {
    margin-bottom: 15px;
    font-size: 36px;
}

.page-hero .section-subtitle {
    font-size: 16px;
    color: #CCCCCC;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0;
    position: relative;
}

.content-section:first-of-type {
    padding-top: 40px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: #FFD700;
    margin: 40px 0 20px;
    line-height: 1.3;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #FFFFFF;
    margin: 30px 0 15px;
    line-height: 1.3;
}

.content-wrapper h4 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #FFD700;
    margin: 25px 0 12px;
    line-height: 1.3;
}

.content-wrapper p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #DEDEDE;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #DEDEDE;
    line-height: 1.8;
    margin-bottom: 12px;
}

.content-wrapper a {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.content-wrapper a:hover {
    color: #FFED4E;
    text-decoration: underline;
}

.content-wrapper strong {
    color: #FFFFFF;
    font-weight: 600;
}

.content-wrapper blockquote {
    border-left: 4px solid #FFD700;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #CCCCCC;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: linear-gradient(135deg, #1E1E40 0%, #1A1A35 50%, #1E1E40 100%);
    border: 2px solid #FFD700;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    background: linear-gradient(135deg, #1E1E40 0%, #1A1A35 50%, #1E1E40 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.contact-card i {
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.contact-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #CCCCCC;
    margin: 0;
}

/* FAQ Accordion Styles */
.faq-list {
    max-width: 900px;
    margin: 30px auto 40px;
}

.faq-item {
    background: linear-gradient(135deg, #1E1E40 0%, #1A1A35 50%, #1E1E40 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-question i {
    font-size: 20px;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #DEDEDE;
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* FAQ Contact Section */
.faq-contact-section {
    margin-top: 50px;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1E1E40 0%, #1A1A35 50%, #1E1E40 100%);
    border: 2px solid #FFD700;
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.1);
}

.faq-contact-section h2 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 15px;
}

.faq-contact-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #DEDEDE;
    margin-bottom: 25px;
}

/* Responsive Content Pages */
@media (max-width: 768px) {
    .page-header,
    .page-hero {
        padding: 50px 0 30px;
    }

    .page-header .section-title,
    .page-hero .section-title {
        font-size: 28px;
    }

    .page-header .section-subtitle,
    .page-hero .section-subtitle {
        font-size: 15px;
    }

    .content-section {
        padding: 40px 0;
    }

    .content-wrapper h2 {
        font-size: 28px;
    }

    .content-wrapper h3 {
        font-size: 22px;
    }

    .content-wrapper h4 {
        font-size: 18px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-header,
    .page-hero {
        padding: 40px 0 25px;
    }

    .page-header .section-title,
    .page-hero .section-title {
        font-size: 24px;
    }

    .page-header .section-subtitle,
    .page-hero .section-subtitle {
        font-size: 14px;
    }

    .content-wrapper h2 {
        font-size: 24px;
    }

    .content-wrapper h3 {
        font-size: 20px;
    }

    .content-wrapper p,
    .content-wrapper li {
        font-size: 15px;
    }

    .content-section {
        padding: 30px 0;
    }

    .content-section:first-of-type {
        padding-top: 20px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .auth-wrapper {
        padding: 15px 0 30px;
    }

    .faq-contact-section {
        margin-top: 30px;
        padding: 25px 15px;
    }

    .faq-contact-section h2 {
        font-size: 20px;
    }

    .faq-contact-section p {
        font-size: 14px;
    }
}

/* ============================================
   AUTH PAGES STYLES (LOGIN/SIGNUP)
   ============================================ */
.auth-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px 0 50px;
}

.auth-card {
    background: linear-gradient(135deg, #1E1E40 0%, #1A1A35 50%, #1E1E40 100%);
    border: 2px solid #FFD700;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 10px;
}

.auth-header p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #CCCCCC;
}

.auth-header a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-header a:hover {
    color: #FFED4E;
    text-decoration: underline;
}

/* Google Sign In Button */
.btn-google {
    width: 100%;
    padding: 14px 20px;
    background: #FFFFFF;
    color: #4285F4;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-google i {
    font-size: 20px;
    color: #4285F4;
}

.btn-google:hover {
    background: #F5F5F5;
    border-color: #4285F4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
    transform: translateY(-2px);
}

.btn-google:active {
    transform: translateY(0);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.auth-divider span {
    position: relative;
    background: linear-gradient(135deg, #1E1E40 0%, #1A1A35 50%, #1E1E40 100%);
    padding: 0 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #CCCCCC;
    font-weight: 500;
}

.auth-form {
    margin-top: 25px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #DEDEDE;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FFD700;
}

.checkbox-label a {
    color: #FFD700;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.forgot-password {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #FFED4E;
    text-decoration: underline;
}

.form-hint {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    margin-top: 5px;
}

/* Responsive Auth Pages */
@media (max-width: 768px) {
    .auth-card {
        padding: 30px 20px;
    }

    .auth-header h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .auth-wrapper {
        padding: 10px;
    }

    .auth-card {
        padding: 25px 15px;
    }

    .auth-header h3 {
        font-size: 22px;
    }

    .btn-google {
        padding: 12px 16px;
        font-size: 14px;
    }

    .auth-form .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

