/* ==========================================
   BOLBOLETKİNLİK - Premium Casino Portal CSS
   Theme: Emerald Green + Gold
   (Fonts loaded via <link> in HTML for faster rendering)
   ========================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050a05;
    --bg-secondary: #0a1a0a;
    --bg-card: #0d1f0d;
    --bg-card-hover: #122212;
    --emerald: #00e676;
    --emerald-dark: #00c853;
    --emerald-glow: rgba(0, 230, 118, 0.15);
    --gold: #ffd700;
    --gold-dark: #daa520;
    --white: #ffffff;
    --text: #e0e7e0;
    --text-muted: #7a8a7a;
    --red: #ff4444;
    --cyan: #00e5ff;
    --purple: #bb86fc;
    --orange: #ff9100;
    --border: rgba(0, 230, 118, 0.15);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --glow: 0 0 20px rgba(0, 230, 118, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Animated Background ---- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 230, 118, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 230, 118, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ==================== HEADER ==================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 10, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--emerald);
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
    letter-spacing: 2px;
}

.logo .logo-icon {
    font-size: 1.8rem;
}

.logo span.gold {
    color: var(--gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--emerald);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-chat {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: #000;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.3);
    cursor: pointer;
    border: none;
}

.btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 230, 118, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--emerald);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ---- Mobile Menu ---- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(5, 10, 5, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--emerald);
}

/* ==================== HERO CAROUSEL ==================== */
.hero {
    position: relative;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 2rem;
    z-index: 1;
}

.carousel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--glow);
    border: 1px solid var(--border);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--emerald);
    border: 1px solid var(--border);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--emerald);
    color: #000;
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--emerald);
    box-shadow: 0 0 10px var(--emerald);
}

/* ==================== SPONSOR TICKER ==================== */
.sponsor-bar {
    max-width: 1200px;
    margin: 15px auto;
    padding: 0 2rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.sponsor-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    will-change: transform;
}

@keyframes sponsorScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

.sponsor-item {
    flex-shrink: 0;
    padding: 8px 20px;
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-item img {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.sponsor-item:hover img {
    filter: brightness(1.3);
}

/* ==================== CARD GRID ==================== */
.content-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--emerald);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

/* ---- Site Card ---- */
.site-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 180px;
}

.site-card:hover {
    transform: translateY(-5px);
    border-color: var(--emerald);
    box-shadow: var(--glow);
    background: var(--bg-card-hover);
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    z-index: 5;
}

.badge-vip {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: #000;
}

.badge-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
}

.badge-new {
    background: linear-gradient(135deg, var(--cyan), #0097a7);
    color: #000;
}

.card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    height: 130px;
}

.card-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.ad-placeholder {
    flex-direction: column;
    border: 2px dashed rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.03);
}

.card-cta {
    display: block;
    padding: 10px;
    margin-top: auto;
    text-align: center;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.card-cta:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

/* ---- Ad Card ---- */
.ad-card {
    border-radius: var(--radius);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    background: rgba(10, 26, 10, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    text-align: center;
    gap: 8px;
    min-height: 180px;
    transition: all 0.3s ease;
}

.ad-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.ad-card .ad-icon {
    font-size: 2rem;
}

.ad-card .ad-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

.ad-card .ad-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ==================== FEATURES ==================== */
.features-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.section-title span {
    color: var(--emerald);
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
    border-color: var(--emerald);
}

.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 15px;
}

.feature-icon.green {
    background: rgba(0, 230, 118, 0.15);
    color: var(--emerald);
}

.feature-icon.gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
}

.feature-icon.cyan {
    background: rgba(0, 229, 255, 0.15);
    color: var(--cyan);
}

.feature-icon.purple {
    background: rgba(187, 134, 252, 0.15);
    color: var(--purple);
}

.feature-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.feature-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================== CHAT SECTION ==================== */
.chat-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.chat-promo {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.08), rgba(0, 230, 118, 0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.chat-promo .chat-icon {
    font-size: 3rem;
    color: var(--emerald);
    text-shadow: 0 0 30px rgba(0, 230, 118, 0.4);
}

.chat-promo h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 2px;
}

.chat-promo p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 500px;
}

.chat-promo .btn-open-chat {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: #000;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
}

.chat-promo .btn-open-chat:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 230, 118, 0.5);
}

/* ==================== FOOTER ==================== */
.footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald);
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

.footer-logo .gold {
    color: var(--gold);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(0, 230, 118, 0.03);
}

.social-icon:hover {
    color: var(--emerald);
    border-color: var(--emerald);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
    transform: translateY(-3px);
}

.footer-contact {
    margin-bottom: 25px;
}

.footer-contact p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--emerald);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.footer-btn:hover {
    background: rgba(0, 230, 118, 0.15);
    border-color: var(--emerald);
}

.footer-warning {
    margin: 25px auto;
    max-width: 600px;
}

.warning-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 20px;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-warning p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
    margin-top: 20px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header {
        padding: 0 1rem;
    }

    .hero,
    .sponsor-bar,
    .content-section,
    .features-section,
    .chat-section,
    .footer {
        padding: 0 1rem;
    }

    .carousel-slide img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-icons {
        gap: 8px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .chat-promo {
        padding: 25px 15px;
    }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 230, 118, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 230, 118, 0.4);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-card,
.feature-card,
.ad-card {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* ==================== PROMO TICKER ==================== */
.promo-ticker {
    background: linear-gradient(90deg, #000, rgba(0, 230, 118, 0.1), #000);
    border-top: 1px solid var(--emerald);
    border-bottom: 1px solid var(--emerald);
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.promo-ticker-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

.ticker-item {
    flex-shrink: 0;
    padding: 0 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticker-item.gold {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.ticker-sep {
    flex-shrink: 0;
    padding: 0 10px;
    font-size: 1rem;
}

/* ==================== HERO PROMO ==================== */
.hero-promo {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.promo-box {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.08), rgba(255, 215, 0, 0.05), rgba(0, 230, 118, 0.08));
    border: 2px solid var(--emerald);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.15), inset 0 0 40px rgba(0, 230, 118, 0.05);
    animation: promoGlow 3s ease-in-out infinite alternate;
}

@keyframes promoGlow {
    0% {
        box-shadow: 0 0 20px rgba(0, 230, 118, 0.1), inset 0 0 20px rgba(0, 230, 118, 0.03);
    }

    100% {
        box-shadow: 0 0 50px rgba(0, 230, 118, 0.25), inset 0 0 50px rgba(0, 230, 118, 0.08);
    }
}

.promo-sparkle {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: sparkleMove 4s ease-in-out infinite;
}

@keyframes sparkleMove {
    0% {
        left: -60%;
    }

    100% {
        left: 160%;
    }
}

.promo-badge {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--red), #ff6600);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.promo-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.promo-title .glow {
    color: var(--emerald);
    text-shadow: 0 0 30px rgba(0, 230, 118, 0.6), 0 0 60px rgba(0, 230, 118, 0.3);
    font-size: 2.8rem;
}

.promo-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.promo-detail {
    margin: 15px 0;
}

.promo-detail p {
    font-size: 0.9rem;
    color: var(--text);
    margin: 6px 0;
    line-height: 1.6;
}

.promo-detail strong {
    color: var(--emerald);
}

.promo-divider {
    width: 80%;
    max-width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
    margin: 20px auto;
}


/* ---- MEGA CASHBACK ---- */
.cashback-mega {
    position: relative;
    margin: 20px 0;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 230, 118, 0.08), rgba(255, 215, 0, 0.1));
    border: 2px solid var(--gold);
    border-radius: 14px;
    overflow: hidden;
    animation: cashbackPulse 3s ease-in-out infinite alternate;
}

@keyframes cashbackPulse {
    0% {
        border-color: var(--gold);
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
    }

    50% {
        border-color: var(--emerald);
        box-shadow: 0 0 30px rgba(0, 230, 118, 0.2);
    }

    100% {
        border-color: var(--gold);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
    }
}

.cashback-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.08), transparent);
    animation: sparkleMove 3s ease-in-out infinite;
}

.cashback-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cashback-fire {
    font-size: 1.5rem;
    animation: fireShake 0.5s ease-in-out infinite alternate;
}

@keyframes fireShake {
    0% {
        transform: rotate(-5deg) scale(1);
    }

    100% {
        transform: rotate(5deg) scale(1.1);
    }
}

.cashback-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--red), #ff6600, var(--red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: labelShimmer 2s linear infinite;
}

@keyframes labelShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.cashback-main-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cashback-big-icon {
    font-size: 2.5rem;
    animation: coinBounce 1.5s ease-in-out infinite;
}

@keyframes coinBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.cashback-numbers {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cashback-every {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cashback-amount-big {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.2);
    animation: amountGlow 2s ease-in-out infinite alternate;
}

@keyframes amountGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }

    100% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.3);
    }
}

.cashback-arrow {
    font-size: 2rem;
    font-weight: 900;
    color: var(--emerald);
    animation: arrowPulse 1s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        opacity: 1;
        transform: translateX(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(5px);
    }
}

.cashback-result {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cashback-result-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--emerald);
    text-shadow: 0 0 25px rgba(0, 230, 118, 0.6), 0 0 50px rgba(0, 230, 118, 0.3);
    line-height: 1;
    letter-spacing: 4px;
    -webkit-text-stroke: 1px rgba(0, 230, 118, 0.3);
    animation: amountGlow 2s ease-in-out infinite alternate;
}

.cashback-result-amount small {
    font-size: 0.5em;
    vertical-align: middle;
}

.cashback-result-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--emerald);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cashback-bottom {
    margin-top: 15px;
    text-align: center;
}

.tag-unlimited-big {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--red), #ff6600);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    animation: badgePulse 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .cashback-amount-big {
        font-size: 1.6rem;
    }

    .cashback-result-amount {
        font-size: 1.8rem;
    }

    .cashback-big-icon {
        font-size: 1.8rem;
    }

    .cashback-main-row {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cashback-amount-big {
        font-size: 1.3rem;
    }

    .cashback-result-amount {
        font-size: 1.5rem;
    }

    .cashback-numbers {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
}

.tag-unlimited {
    display: inline-block;
    padding: 2px 10px;
    background: var(--red);
    color: white;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
    animation: badgePulse 1.5s ease-in-out infinite;
    vertical-align: middle;
}

.btn-promo-chat {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 230, 118, 0.3);
    margin-top: 10px;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 230, 118, 0.5);
        transform: translateY(-2px);
    }
}

.btn-promo-chat:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.4);
}

/* ==================== PROMO MID BANNER ==================== */
.promo-mid {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.promo-mid-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(0, 230, 118, 0.05));
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 18px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: promoGlow 3s ease-in-out infinite alternate;
}

.promo-mid-box:hover {
    transform: translateY(-2px);
    border-color: var(--emerald);
}

.promo-mid-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.promo-mid-icon {
    font-size: 2rem;
}

.promo-mid-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.promo-mid-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.btn-promo-mid {
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-promo-mid:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

/* ---- Promo Responsive ---- */
@media (max-width: 768px) {
    .promo-title {
        font-size: 1.4rem;
    }

    .promo-title .glow {
        font-size: 1.8rem;
    }

    .promo-mid-box {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .promo-mid-left {
        flex-direction: column;
    }

    .ticker-item {
        font-size: 0.75rem;
    }

    .hero-promo,
    .promo-mid {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .promo-title {
        font-size: 1.1rem;
    }

    .promo-title .glow {
        font-size: 1.4rem;
    }

    .promo-box {
        padding: 20px 15px;
    }

    .cashback-amount {
        font-size: 1rem;
    }
}