/* ===============
   HERO SECTION - CYBERPUNK
   =============== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 255, 65, 0.15) 0%, transparent 50%),
                var(--bg-color);
    text-align: center;
    overflow: hidden;
    border-bottom: 2px solid var(--border-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--primary-color));
    animation: logoPulse 3s ease-in-out infinite;
    display: block;
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px var(--primary-color));
    }
    50% {
        filter: drop-shadow(0 0 40px var(--primary-color));
    }
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.hero-content h1 span {
    color: var(--primary-color);
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    text-shadow: 0 0 40px var(--primary-color);
    margin-top: 12px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: var(--primary-color);
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.8);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.3);
}

/* ===============
   SECTION HEADERS
   =============== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin: 80px 0 50px;
    position: relative;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0 40px;
}

.section-header .section-title {
    margin: 0;
    text-align: left;
}

.section-header .section-title::after {
    margin: 16px 0 0 0;
}

.section-header .view-all {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-header .view-all:hover {
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

/* ===============
   GAME FEATURE GRID
   =============== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 20px;
    margin-bottom: 90px;
}

.game-card {
    background: var(--bg-card);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
    position: relative;
    border-radius: 0;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--accent-purple));
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card::after {
    content: '▶ JOGAR AGORA';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    text-align: center;
    padding: 12px;
    text-transform: uppercase;
    z-index: 1;
    transition: all 0.4s ease;
}

.game-card > a {
    position: relative;
    z-index: 1;
    display: block;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.5);
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover::after {
    bottom: 0;
}

.game-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.game-card:hover .game-card-img {
    transform: scale(1.1);
    filter: brightness(1.15);
}

.game-card-content {
    padding: 22px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.game-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.game-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===============
   SMALL GAMES GRID
   =============== */
.small-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-rows: 280px;
    gap: 24px;
    margin-bottom: 90px;
}

.small-game {
    display: block;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.small-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.small-game:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.5);
}

.small-game:hover::before {
    opacity: 1;
}

.small-game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.small-game:hover img {
    transform: scale(1.15);
    filter: brightness(1.15);
}

.small-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.small-game:hover .small-game-overlay {
    opacity: 1;
}

.small-game-tag {
    display: inline-block;
    align-self: flex-start;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.small-game-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.small-game-name {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.small-game-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--primary-color);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 20px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.7);
    align-self: flex-start;
}

/* ===============
   NEWS SECTION
   =============== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(0, 255, 65, 0.35);
}

.news-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news-card:hover .news-card-img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.news-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card a > *:not(img) {
    padding: 0 24px;
}

.news-meta {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin: 24px 0 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: var(--text-primary);
    transition: color 0.3s;
    font-weight: 700;
    letter-spacing: 1px;
}

.news-card:hover h4 {
    color: var(--primary-color);
}

.news-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ===============
   FEATURES SECTION
   =============== */
.features-section {
    margin: 100px auto;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
    padding: 80px 24px;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 32px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color), var(--accent-purple));
    transition: all 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 100% 0%, rgba(0, 255, 65, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px) translateX(4px);
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.3);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}

.feature-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===============
   WINNERS SECTION
   =============== */
.winners-section {
    margin: 90px auto;
    padding: 60px 24px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(157, 78, 221, 0.05), rgba(0, 255, 65, 0.05));
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.winners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--secondary-color), var(--primary-color), var(--accent-purple));
    background-size: 200% 200%;
    animation: gradientLine 3s ease infinite;
}

@keyframes gradientLine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 24px;
    margin-top: 48px;
}

.winner-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.winner-card::after {
    content: '🎉';
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 60px;
    opacity: 0;
    transition: all 0.4s ease;
}

.winner-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.4);
}

.winner-card:hover::after {
    opacity: 0.3;
    top: -10px;
    right: -10px;
}

.winner-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.winner-avatar svg {
    width: 32px;
    height: 32px;
}

.winner-details {
    flex: 1;
}

.winner-name {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    font-size: 1.15rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.winner-game {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 4px;
}

.winner-prize {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

.winner-prize span {
    display: block;
}

/* ===============
   PAYMENT SECTION
   =============== */
.payment-section {
    margin: 90px auto;
}

.payment-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -28px;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.payment-method-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.payment-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.15), rgba(0, 212, 255, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.payment-method-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 255, 65, 0.4);
}

.payment-method-card:hover::before {
    opacity: 1;
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--primary-color);
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.payment-method-card:hover .payment-icon {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.payment-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.payment-method-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.payment-method-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ===============
   TESTIMONIALS SECTION
   =============== */
.testimonials-section {
    margin: 90px auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 28px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 255, 65, 0.4);
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-stars svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    fill: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.6));
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
}

/* ===============
   CTA SECTION
   =============== */
.cta-section {
    margin: 100px auto 80px;
    padding: 80px 24px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-purple));
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-title span {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta.primary {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.7);
}

.btn-cta.secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}

.btn-cta.secondary:hover {
    background: var(--bg-hover);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.3);
}

.cta-note {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===============
   MARKETING SECTIONS
   =============== */
.cyan-text {
    color: var(--primary-color);
    font-weight: 700;
}

.marketing-container {
    max-width: 1280px;
    margin: 90px auto;
    padding: 0 24px;
    font-family: var(--font-body);
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.promo-col {
    background: var(--bg-card);
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.promo-col::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.promo-col:hover {
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.3);
    transform: translateY(-8px);
}

.promo-col:hover::before {
    opacity: 1;
}

.promo-col-reverse {
    display: flex;
    flex-direction: column;
}

.promo-col-reverse .promo-img {
    order: 2;
}

.promo-col-reverse h3, .promo-col-reverse .promo-rules {
    order: 1;
}

.promo-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid var(--border-color);
}

.promo-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding: 28px 24px 16px;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-rules {
    padding: 0 28px 28px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.rule-title {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.1rem;
}

.promo-rules ol {
    padding-left: 24px;
}

.promo-rules li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Jili Section */
.jili-section {
    margin-bottom: 50px;
}

.jili-gift-section, .jili-deposit-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
    background: var(--bg-card);
    padding: 50px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.jili-gift-section:hover, .jili-deposit-section:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.3);
}

.jili-gift-content, .jili-deposit-content {
    flex: 1;
    min-width: 320px;
}

.jili-gift-img, .jili-deposit-img {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

.jili-gift-img img, .jili-deposit-img img {
    max-width: 100%;
    border: 2px solid var(--border-color);
}

.jili-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jili-subtitle {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    font-family: var(--font-heading);
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: 1px;
}

.jili-list {
    list-style: none;
    padding-left: 0;
    margin-top: 24px;
}

.jili-list li {
    margin-bottom: 14px;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.jili-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
}

.payment-methods {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-methods > div {
    background: var(--bg-elevated) !important;
    border: 2px solid var(--border-color) !important;
    padding: 14px 28px !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease !important;
}

.payment-methods > div:hover {
    transform: translateY(-4px) scale(1.03) !important;
    background: var(--primary-color) !important;
    color: #000 !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5) !important;
}

/* ===============
   RESPONSIVE
   =============== */
@media (max-width: 1200px) {
    .testimonials-grid,
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero-logo img {
        max-width: 240px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h1 span {
        font-size: 3.2rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .marketing-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-logo img {
        max-width: 200px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero-content h1 span {
        font-size: 2.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 16px 32px;
    }

    .features-grid,
    .testimonials-grid,
    .payment-grid,
    .game-grid,
    .winners-grid {
        grid-template-columns: 1fr;
    }

    .small-games-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        padding: 0;
        border-bottom: 2px solid var(--border-color);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .nav-list.active {
        max-height: 600px;
        padding: 20px 16px;
    }

    .nav-list a {
        padding: 14px 20px;
        width: 100%;
        text-align: left;
        margin: 4px 0;
    }

    .btn-login,
    .btn-register {
        padding: 10px 18px;
        font-size: 12px;
    }

    .footer {
        padding: 60px 0 30px;
    }

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

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
    }
}

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

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

    .hero-content h1 span {
        font-size: 2.2rem;
    }

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

    .small-games-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .marketing-container {
        padding: 0 16px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .jili-gift-section, .jili-deposit-section {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .jili-gift-img, .jili-deposit-img {
        order: -1;
    }
}
