/* ============================================
   DAILY BITES - DESIGN REVOLUCIONÁRIO COM CURVAS
   Design orgânico e único
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0f;
    color: #ffffff;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ============================
   BACKGROUND GRID
   ============================ */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* Overlay */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 11000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.overlay-content {
    background: #1a1a24;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 400px;
    border: 2px solid rgba(0, 200, 83, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.overlay-content h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.overlay-content button {
    background: #00c853;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.overlay-content button:hover {
    background: #00a743;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
}

/* Hero Revolucionário com Curvas */
.bites-hero {
    position: relative;
    padding: 2.5rem 1rem 2rem;
    background: transparent;
    /* Was blocking the grid */
    overflow: hidden;
    min-height: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: blobFloat 20s ease-in-out infinite;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}



.hero-blob-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.hero-intro {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-floating-cookie {
    width: min(470px, 48vw);
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transform: translateX(20px);
}

.hero-floating-cookie img {
    width: 100%;
    max-width: 400px;
    height: auto;
    background: transparent;
    display: block;
    filter: drop-shadow(0 25px 60px rgba(0, 200, 83, 0.35));
    animation: cookieFloat 6s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes cookieFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.03);
    }
}

/* Floating Coins Animation */
.hero-floating-cookie {
    position: relative;
    /* Ensure absolute children are relative to this */
}

.floating-coin {
    position: absolute;
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    z-index: 2;
    animation: coinFloat 4s ease-in-out infinite;
}

.coin-1 {
    top: 10%;
    left: -10%;
    font-size: 3rem;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.coin-2 {
    bottom: 20%;
    right: -5%;
    font-size: 2.2rem;
    animation-delay: 1.5s;
    transform: rotate(15deg);
}

.coin-3 {
    top: 40%;
    right: -15%;
    font-size: 1.8rem;
    animation-delay: 2.5s;
    transform: rotate(10deg);
}

@keyframes coinFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-width: 280px;
}

.hero-badge-curved {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 200, 83, 0.15);
    border: 2px solid rgba(0, 200, 83, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00c853;
    backdrop-filter: blur(10px);
}

.hero-title-curved {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.title-line-1 {
    color: #ffffff;
    font-weight: 300;
}

.title-line-2 {
    color: #00c853;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(0, 200, 83, 0.5);
}

.hero-desc-curved {
    font-size: 1.05rem;
    color: #a0a0a0;
    font-weight: 400;
    max-width: 520px;
}

.daily-action-section {
    margin: 1.8rem auto 0;
    max-width: 1100px;
    padding: 0;
}

.daily-combo-card {
    display: flex;
    gap: 0;
    background: linear-gradient(135deg, rgba(10, 14, 21, 0.95), rgba(5, 7, 12, 0.98));
    border-radius: 40px;
    border: 1px solid rgba(0, 200, 83, 0.2);
    padding: 0;
    box-shadow: 0 45px 130px rgba(0, 0, 0, 0.6);
    align-items: stretch;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.daily-combo-card::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 0;
}

.daily-main-panel,
.bonus-area-curved {
    height: 100%;
    position: relative;
    z-index: 1;
}

.daily-main-panel {
    flex: 1.08;
    background: radial-gradient(circle at top left, rgba(0, 200, 83, 0.1), transparent 55%);
    padding: 1.95rem 2.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0;
    box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.35);
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.daily-main-panel::after {
    display: none;
}

.daily-heading {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.daily-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.daily-heading h2 {
    font-size: 2.1rem;
    margin: 0;
}

.daily-heading p {
    color: #bdbfd1;
    margin: 0.25rem 0 0;
    line-height: 1.45;
}

.daily-perks-row {
    margin-top: 0.2rem;
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.daily-perk {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    border-radius: 14px;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.18);
    box-shadow: inset 0 0 12px rgba(0, 200, 83, 0.08);
    flex: 1 1 200px;
    max-width: 250px;
}

.perk-icon {
    font-size: 0.95rem;
    background: rgba(0, 200, 83, 0.22);
    border-radius: 12px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.perk-content {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.perk-content strong {
    font-size: 0.82rem;
    color: #ffffff;
}

.perk-content small {
    font-size: 0.7rem;
    color: #aee6c6;
}

.daily-highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 200, 83, 0.12);
    border: 1px solid rgba(0, 200, 83, 0.4);
    border-radius: 18px;
    padding: 0.6rem 1.2rem;
    min-width: 160px;
}

.daily-highlight span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ffa1;
}

.daily-highlight small {
    font-size: 0.72rem;
    color: #9ba3b7;
    margin-top: 0.2rem;
}

.daily-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 200, 83, 0.4);
    color: #8affc1;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.daily-main-content {
    margin-top: 0.35rem;
    display: flex;
    justify-content: center;
}

.daily-main-panel .claim-btn-curved {
    padding: 1.1rem 3rem;
    font-size: 1.05rem;
    border-radius: 42px;
    box-shadow: 0 12px 30px rgba(0, 200, 83, 0.35);
}

.daily-quick-info {
    margin-top: 0.4rem;
    padding-top: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.daily-quick-info>div {
    flex: 1;
}

.daily-quick-info .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8f95a5;
    display: block;
}

.daily-quick-info strong {
    display: block;
    margin-top: 0.15rem;
    font-size: 1rem;
    color: #ffffff;
}

.daily-messages {
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-height: 10px;
    justify-content: center;
}

.hidden-message {
    display: none;
}

/* removed old side panel styling */

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.cta-primary,
.cta-secondary {
    border-radius: 999px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-primary {
    background: linear-gradient(135deg, #00c853, #00a743);
    color: #000;
    box-shadow: 0 15px 35px rgba(0, 200, 83, 0.35);
}

.cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    background: transparent;
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-2px);
}

.hero-trigger-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.hero-trigger-pills span {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    background: rgba(0, 200, 83, 0.12);
    border: 1px solid rgba(0, 200, 83, 0.2);
    color: #aee6c6;
}

.hero-live-stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.live-stat {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    min-width: 120px;
}

.live-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #8f8f9c;
    text-transform: uppercase;
}

.live-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00c853;
}

.hero-stats-curved {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
}

.stat-card {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding: 1.2rem 1.4rem;
    background: rgba(26, 26, 36, 0.65);
    border-radius: 20px;
    border: 1px solid rgba(0, 200, 83, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #9fa3b4;
    margin: 0;
}

.stat-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0.2rem 0 0;
}

/* Banner Curvo */
.curved-banner {
    position: relative;
    margin: -4rem auto 3rem;
    max-width: 1000px;
    z-index: 10;
}

.banner-curve-top {
    width: 100%;
    height: 60px;
    background: #0a0a0f;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    margin-bottom: -1px;
}

.banner-content-curved {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: rgba(26, 26, 36, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 2px solid rgba(0, 200, 83, 0.2);
    transition: all 0.3s ease;
}

.banner-content-curved:hover {
    border-color: rgba(0, 200, 83, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.15);
}

.banner-text-curved {
    color: #888;
    font-size: 0.95rem;
    font-weight: 500;
}

.banner-link-curved {
    color: #00c853;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.banner-link-curved:hover {
    color: #00a743;
    transform: translateX(5px);
}

.banner-curve-bottom {
    width: 100%;
    height: 60px;
    background: #0a0a0f;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    margin-top: -1px;
}

.ad-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
}

/* Card Principal com Curvas */
.reward-curved-section {
    margin: 4rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

.curved-card {
    background: rgba(26, 26, 36, 0.7);
    backdrop-filter: blur(30px);
    border-radius: 50px;
    border: 2px solid rgba(0, 200, 83, 0.2);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.curved-card:hover {
    border-color: rgba(0, 200, 83, 0.35);
    box-shadow: 0 25px 70px rgba(0, 200, 83, 0.2);
    transform: translateY(-5px);
}

.card-curve-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 200, 83, 0.3) 20%,
            #00c853 50%,
            rgba(0, 200, 83, 0.3) 80%,
            transparent 100%);
    border-radius: 50px 50px 0 0;
}

.card-inner {
    padding: 3rem 2.5rem;
}

.card-title-area {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.title-icon-bubble {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(0, 200, 83, 0.1));
    border: 3px solid rgba(0, 200, 83, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.title-icon-bubble::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.2) 0%, transparent 70%);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.icon-emoji {
    position: relative;
    z-index: 1;
}

.card-title-curved {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.card-subtitle-curved {
    font-size: 1rem;
    color: #888;
    margin: 0;
    font-weight: 400;
}

.reward-info-curved {
    display: flex;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.info-bubble {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: rgba(0, 200, 83, 0.08);
    border-radius: 25px;
    border: 2px solid rgba(0, 200, 83, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.1), transparent);
    transition: left 0.5s;
}

.info-bubble:hover::before {
    left: 100%;
}

.info-bubble:hover {
    border-color: rgba(0, 200, 83, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.15);
}

.bubble-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bubble-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bubble-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.bubble-value-text {
    font-size: 1.2rem;
    color: #00c853;
    font-weight: 700;
}

.claim-area-curved {
    margin: 3rem 0;
    text-align: center;
}

.claim-btn-curved {
    background: linear-gradient(135deg, #00c853 0%, #00a743 100%);
    color: #000;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.3);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.claim-btn-curved:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

.claim-btn-curved:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.4);
}

.claim-btn-curved:active:not(:disabled) {
    transform: translateY(-1px) scale(1);
}

.claim-btn-curved:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-emoji {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.btn-label {
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.alert-curved {
    color: #ff6b6b;
    font-weight: 600;
    padding: 1.25rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(255, 107, 107, 0.2);
    margin: 1.5rem 0;
    text-align: center;
}

.messages-curved {
    margin: 2rem 0;
    min-height: 60px;
}

.msg-curved {
    margin: 1rem 0;
    padding: 1.25rem;
    border-radius: 20px;
    font-size: 1rem;
}

.msg-success-curved {
    color: #00c853;
    font-weight: 500;
    background: rgba(0, 200, 83, 0.1);
    border: 2px solid rgba(0, 200, 83, 0.2);
}

.msg-premium-curved {
    color: #00c853;
    font-weight: 400;
    background: rgba(0, 200, 83, 0.05);
    border: 2px solid rgba(0, 200, 83, 0.15);
}

.msg-marketing-curved {
    color: #888;
    font-size: 0.9rem;
    background: transparent;
    border: none;
}

.bonus-area-curved {
    flex: 0.92;
    align-self: stretch;
    min-height: 100%;
    background: linear-gradient(140deg, rgba(12, 16, 24, 0.92), rgba(17, 20, 29, 0.96));
    border-radius: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3rem 2rem;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow: hidden;
}

.bonus-area-curved::before {
    content: "";
    position: absolute;
    top: 16%;
    bottom: 16%;
    left: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(255, 90, 120, 0.6), rgba(0, 200, 83, 0.65), transparent);
    transform: translateX(-50%);
    opacity: 0.8;
}

.bonus-title-wrapper {
    text-align: left;
    margin-bottom: 0.25rem;
}

.bonus-title-curved {
    font-size: 1.45rem;
    font-weight: 600;
    color: #ffffff;
}

.bonus-subtitle-curved {
    margin-top: 0.35rem;
    color: #a2a2b8;
    font-size: 0.9rem;
}

.bonus-shell {
    flex: 1;
    background: rgba(7, 10, 15, 0.9);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.9rem 1.05rem;
    box-shadow: inset 0 0 45px rgba(0, 200, 83, 0.08);
    display: flex;
    flex-direction: column;
}

.bonus-line {
    flex: 1;
    display: flex;
    gap: 0.65rem;
    position: relative;
    padding: 0.1rem;
    align-items: flex-start;
}

.bonus-line::before {
    content: "";
    position: absolute;
    top: 8%;
    bottom: 8%;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 66, 110, 0), rgba(255, 82, 120, 0.6), rgba(0, 200, 83, 0.7), rgba(255, 82, 120, 0.6), rgba(255, 66, 110, 0));
    transform: translateX(-50%);
    opacity: 0.85;
}

.bonus-card {
    flex: 1;
    min-width: 0;
    background: linear-gradient(145deg, rgba(20, 24, 34, 0.95), rgba(11, 12, 20, 0.92));
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
}


.bonus-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.6rem;
}

.bonus-card-header h3 {
    margin: 0;
    font-size: 1.05rem;
}

.bonus-card-header small {
    color: #8affc1;
    font-weight: 600;
    font-size: 0.78rem;
}

.bonus-step-chip {
    background: rgba(0, 200, 83, 0.15);
    color: #00c853;
    font-size: 0.75rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 200, 83, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-description {
    color: #cfcfe2;
    font-size: 0.8rem;
    line-height: 1.35;
    margin: 0;
}

.bonus-requirement {
    color: #8affc1;
    font-size: 0.8rem;
    margin: 0;
}

.bonus-requirement.subtle {
    color: #a2a2b8;
    margin: 0.4rem 0 0;
}

.bonus-primary-btn {
    width: 100%;
    border-radius: 18px;
    padding: 0.6rem 0.8rem;
    border: 2px solid transparent;
    background: rgba(0, 200, 83, 0.15);
    color: #ffffff;
    font-weight: 600;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    transition: all 0.25s ease;
    cursor: pointer;
}

.bonus-primary-btn .btn-title {
    font-size: 0.9rem;
}

.bonus-primary-btn .btn-helper {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.bonus-primary-btn:hover {
    background: linear-gradient(135deg, #00c853, #00a743);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 200, 83, 0.25);
}

.bonus-primary-btn.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.bonus-feedback {
    margin: 0;
    font-size: 0.9rem;
    color: #ffffff;
}

.bonus-premium {
    font-size: 0.85rem;
    color: #f5c86b;
    margin: 0;
}

.bonus-warning {
    color: #ffb347;
    font-weight: 500;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 179, 71, 0.4);
    background: rgba(255, 179, 71, 0.1);
    font-size: 0.9rem;
}

.bonus-card-alert {
    animation: bonusShake 0.4s ease;
}

@keyframes bonusShake {

    0%,
    100% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(-4px);
    }

    60% {
        transform: translateX(4px);
    }
}

.balance-title-curved {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.balance-subtitle-curved {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
}

.balance-display-curved {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00c853;
    text-align: center;
    padding: 2.5rem;
    background: rgba(0, 200, 83, 0.08);
    border-radius: 35px;
    border: 2px solid rgba(0, 200, 83, 0.2);
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
}

.balance-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00c853;
}

.balance-currency {
    font-size: 1.3rem;
    color: #888;
    font-weight: 500;
}

/* FAQ com Curvas */
.faq-curved-section {
    margin: 6rem auto;
    max-width: 1000px;
    padding: 3rem 2rem;
    background: #0a0a0f;
    /* Hide grid */
    position: relative;
    z-index: 1;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.faq-title-curved {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
}

.faq-list-curved {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-bubble {
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    border: 2px solid rgba(0, 200, 83, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.faq-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00c853, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.faq-bubble:hover::before {
    opacity: 1;
}

.faq-bubble:hover {
    border-color: rgba(0, 200, 83, 0.35);
    background: rgba(26, 26, 36, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.15);
}

.faq-question-curved {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: #ffffff;
    user-select: none;
    font-size: 1.05rem;
}

.faq-question-curved::-webkit-details-marker {
    display: none;
}

.faq-question-curved::after {
    content: '+';
    margin-left: auto;
    font-size: 2rem;
    color: #00c853;
    transition: transform 0.3s;
    flex-shrink: 0;
    font-weight: 300;
}

.faq-bubble[open] .faq-question-curved::after {
    transform: rotate(45deg);
}

.faq-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-answer-curved {
    padding: 0 2rem 2rem;
    color: #a0a0a0;
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer-curved p {
    margin: 0 0 1rem 0;
}

.faq-link-curved {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00c853;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.faq-link-curved:hover {
    color: #00a743;
    gap: 0.75rem;
    background: rgba(0, 200, 83, 0.15);
    border-color: rgba(0, 200, 83, 0.3);
}

/* Footer Curvo */
.footer-curved {
    position: relative;
    background: #0a0a0f;
    color: #ffffff;
    text-align: center;
    padding: 4rem 1rem 3rem;
    margin-top: 6rem;
}

.footer-curve-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #0a0a0f;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    margin-top: -60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: #888;
}

.highlight-curved {
    color: #00c853;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.3);
}

.footer-links-curved {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links-curved a {
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    border: 1px solid transparent;
}

.footer-links-curved a:hover {
    color: #00c853;
    background: rgba(0, 200, 83, 0.1);
    border-color: rgba(0, 200, 83, 0.2);
}

/* Responsividade */
@media (max-width: 1180px) {
    .daily-combo-card {
        flex-direction: column;
    }

    .daily-main-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .bonus-area-curved {
        border-left: none;
        padding-top: 2rem;
    }

    .bonus-area-curved::before {
        display: none;
    }
}

@media (max-width: 968px) {
    .hero-title-curved {
        font-size: 3rem;
    }

    .hero-floating-cookie {
        width: 200px;
        margin: 1rem auto 0;
        transform: none;
    }

    .hero-intro {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-live-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-trigger-pills {
        justify-content: center;
    }

    .hero-stats-curved {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .daily-action-grid {
        grid-template-columns: 1fr;
    }

    .daily-combo-card {
        border-radius: 32px;
    }

    .daily-main-panel {
        padding: 2.2rem;
    }

    .daily-main-panel .claim-btn-curved {
        width: 100%;
    }

    .daily-perks-row {
        flex-direction: column;
        width: 100%;
    }

    .daily-perk {
        max-width: 100%;
    }

    .daily-quick-info {
        flex-direction: column;
        text-align: center;
    }

    .daily-quick-info>div {
        width: 100%;
    }

    .bonus-area-curved {
        padding: 2rem;
    }

    .bonus-shell {
        padding: 1.2rem 1.3rem;
    }

    .bonus-line {
        flex-direction: column;
        padding: 0;
    }

    .bonus-line::before {
        display: none;
    }

    .card-inner {
        padding: 2.5rem 2rem;
    }

    .reward-info-curved {
        flex-direction: column;
    }

    .info-bubble {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title-curved {
        font-size: 2.5rem;
    }

    .float-icon {
        font-size: 4rem;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-stats-curved {
        grid-template-columns: 1fr;
    }

    .curved-card {
        border-radius: 35px;
    }

    .card-inner {
        padding: 2rem 1.5rem;
    }

    .claim-btn-curved {
        padding: 1.25rem 3rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .bonus-flow {
        grid-template-columns: 1fr;
    }

    .bonus-shell {
        padding: 1.1rem;
    }

    .bonus-line {
        flex-direction: column;
        padding: 0;
        gap: 1rem;
    }

    .bonus-line::before {
        display: none;
    }

    .faq-list-curved {
        grid-template-columns: 1fr;
    }

    .balance-display-curved {
        font-size: 2.5rem;
    }

    .card-title-area {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-content-wrapper {
        padding: 0 0.6rem;
    }

    .daily-action-section {
        padding: 0 0.6rem;
        margin-top: 1.2rem;
    }

    .daily-combo-card {
        border-radius: 26px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
        margin: 0 auto;
    }

    .daily-main-panel {
        padding: 1.7rem 1.5rem;
        gap: 0.6rem;
    }

    .daily-messages {
        min-height: 60px;
    }

    .daily-perks-row {
        gap: 0.5rem;
    }

    .daily-perk {
        flex: 1 1 100%;
    }

    .daily-main-panel .claim-btn-curved {
        width: 100%;
        border-radius: 36px;
    }

    .bonus-area-curved {
        padding: 1.5rem 1.4rem;
    }

    .bonus-shell {
        padding: 0.9rem;
    }

    .bonus-card {
        padding: 0.85rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title-curved {
        font-size: 2rem;
    }

    .title-line-1,
    .title-line-2 {
        font-size: 2rem;
    }

    .daily-highlight {
        display: none;
    }

    .claim-btn-curved {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .balance-display-curved {
        font-size: 2rem;
    }

    .faq-title-curved {
        font-size: 2rem;
    }
}