.hero {
    background-image: url(/image/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
}   



.hero-logo{
    width: 400px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
}


/* Promo wrapper */
.promo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Main promo box */
.promo {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #0a0a2e 0%, #16213e 50%, #0a0a2e 100%);
    padding: 22px 50px;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(255, 0, 128, 0.4),
        0 0 40px rgba(64, 224, 208, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Animated neon border */
.promo::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, 
        #ff0080, #ff8c00, #40e0d0, #7b2fff,
        #ff0080, #ff8c00, #40e0d0, #7b2fff);
    background-size: 400% 400%;
    border-radius: 24px;
    z-index: -2;
    animation: borderGlow 3s linear infinite;
    filter: blur(2px);
}

/* Solid border overlay */
.promo::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #ff0080, #ff8c00, #40e0d0, #7b2fff,
        #ff0080, #ff8c00, #40e0d0, #7b2fff);
    background-size: 400% 400%;
    border-radius: 23px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
}

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

.promo:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 0 30px rgba(255, 0, 128, 0.5),
        0 0 60px rgba(64, 224, 208, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Promo text with gaming style */
.promo h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 4px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(90deg, #fff, #40e0d0, #fff, #ff8c00, #fff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 4s linear infinite;
    text-shadow: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-copy-icon {
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.promo:hover .promo-copy-icon {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes textShine {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* Benefits text */
.promo__benefits {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Segoe UI', system-ui, sans-serif;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    white-space: nowrap;
}

/* 125% highlight */
.promo__highlight {
    display: inline;
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 165, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: pulseGlow 2s ease-in-out infinite;
    margin-left: 8px;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

@keyframes goldShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}


/* Floating particles around promo */
.promo-wrapper::before,
.promo-wrapper::after {
    content: '✦';
    position: absolute;
    font-size: 20px;
    color: #FFD700;
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 10px #FFD700;
}

.promo-wrapper::before {
    top: 10px;
    left: -30px;
    animation-delay: 0s;
}

.promo-wrapper::after {
    top: 50px;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg); 
        opacity: 0.6;
    }
}

/* Particles container */
.particles {
    position: absolute;
    inset: -50px;
    overflow: hidden;
    pointer-events: none;
}

@keyframes burstParticle {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0);
    }
}

@keyframes sparkle {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

/* Epic Toast notification */
.copy-toast {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00C851, #007E33);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    white-space: nowrap;
    animation: toastIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
               toastOut 0.4s ease 1.5s forwards;
    box-shadow: 
        0 0 20px rgba(0, 200, 81, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes toastIn {
    from { 
        opacity: 0; 
        transform: translateX(-50%) translateY(20px) scale(0.5); 
    }
    to { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0) scale(1); 
    }
}

@keyframes toastOut {
    from { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0) scale(1); 
    }
    to { 
        opacity: 0; 
        transform: translateX(-50%) translateY(-20px) scale(0.5); 
    }
}

/* ==================== MEDIA QUERIES ==================== */

/* Tablet - iPad */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 20px;
    }

    .hero-logo {
        width: 280px;
    }

    .promo {
        padding: 16px 30px;
        border-radius: 16px;
    }

    .promo h1 {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .promo__benefits {
        font-size: 1.5rem;
        white-space: normal;
        text-align: center;
    }

    .promo__highlight {
        font-size: 1.8rem;
        display: block;
        margin-top: 5px;
        margin-left: 0;
    }

    .promo-wrapper {
        position: relative;
        gap: 14px;
    }

    .promo-wrapper::before,
    .promo-wrapper::after {
        display: none;
    }

    .bonus-card {
        position: relative;
        bottom: auto;
        margin-top: 20px;
        width: 95%;
        padding: 20px 25px 15px;
    }

    .copy-toast {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* iPhone 14 Pro Max - 430px */
@media (max-width: 430px) {
    .hero-logo {
        width: 260px;
    }

    .promo {
        padding: 20px 36px;
    }

    .promo h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .promo__benefits {
        font-size: 1.6rem;
    }

    .promo__highlight {
        font-size: 2.1rem;
    }

    .promo-wrapper {
        gap: 14px;
    }

    .bonus-card {
        padding: 16px 18px 12px;
        margin-top: 18px;
    }

    .bonus-card__title {
        font-size: 1.25rem;
    }

    .bonus-card__text,
    .bonus-card__subtext {
        font-size: 0.9rem;
    }

    .bonus-card__btn {
        padding: 12px 32px;
        font-size: 0.9rem;
    }
}

/* iPhone 12/13/14 - 390px */
@media (max-width: 390px) {
    .hero-logo {
        width: 200px;
    }

    .promo {
        padding: 12px 20px;
        border-radius: 14px;
    }

    .promo h1 {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .promo__benefits {
        font-size: 1.1rem;
    }

    .promo__highlight {
        font-size: 1.4rem;
    }

    .promo-wrapper {
        gap: 10px;
    }

    .bonus-card {
        margin-top: 15px;
        padding: 14px 14px 10px;
    }

    .bonus-card__title {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .bonus-card__cta-text {
        font-size: 0.85rem;
    }
}

/* iPhone SE - 375px */
@media (max-width: 375px) {
    .hero-logo {
        width: 180px;
    }

    .promo {
        padding: 10px 16px;
    }

    .promo h1 {
        font-size: 0.85rem;
    }

    .promo__benefits {
        font-size: 1rem;
    }

    .promo__highlight {
        font-size: 1.3rem;
    }

    .promo-wrapper {
        gap: 8px;
    }

    .bonus-card {
        padding: 12px 12px 8px;
        margin-top: 12px;
    }

    .bonus-card__title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .bonus-card__text,
    .bonus-card__subtext {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    .bonus-card__cta-text {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .bonus-card__btn {
        padding: 10px 24px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .payment-bar {
        margin-top: 12px;
        padding: 8px 12px;
    }

    .payment-bar__text {
        font-size: 0.75rem;
    }

    .payment-icon {
        width: 38px;
        height: 26px;
        font-size: 1rem;
    }

    .side-character--mobile {
        width: 90px;
        margin-top: 8px;
    }
}

/* Small phones - 360px */
@media (max-width: 360px) {
    .hero-logo {
        width: 180px;
    }

    .promo {
        padding: 10px 15px;
    }

    .promo h1 {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .promo__benefits {
        font-size: 1rem;
    }

    .promo__highlight {
        font-size: 1.3rem;
    }

    .bonus-card__title {
        font-size: 1rem;
    }
}

/* Very small phones - 320px */
@media (max-width: 320px) {
    .hero-logo {
        width: 160px;
    }

    .promo h1 {
        font-size: 0.75rem;
    }

    .promo__benefits {
        font-size: 0.9rem;
    }

    .promo__highlight {
        font-size: 1.2rem;
    }

    .bonus-card__btn {
        padding: 8px 22px;
        font-size: 0.8rem;
    }
}

/* ==================== BONUS CARD ==================== */

.bonus-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0a0a2e 0%, #16213e 50%, #0a0a2e 100%);
    padding: 24px 50px 20px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(64, 224, 208, 0.4);
    box-shadow: 
        0 0 30px rgba(64, 224, 208, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    width: 95%;
    max-width: 800px;
}

.bonus-card__title {
    margin: 0 0 14px;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #40E0D0;
    text-shadow: 
        0 0 10px rgba(64, 224, 208, 0.8),
        0 0 20px rgba(64, 224, 208, 0.4);
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.bonus-card__text {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.5;
}

.bonus-card__subtext {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.4;
}

.bonus-card__accent {
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.bonus-card__cta-text {
    margin: 0 0 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
    font-style: italic;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bonus-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00C851, #007E33);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 
        0 0 25px rgba(0, 200, 81, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: btnPulse 2s ease-in-out infinite;
}

.bonus-card__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.bonus-card__btn:hover::before {
    left: 100%;
}

.bonus-card__btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 0 40px rgba(0, 200, 81, 0.8),
        0 12px 35px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #00E676, #00C851);
    animation: none;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.bonus-card__btn:hover .btn-icon {
    transform: translateX(5px);
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(0, 200, 81, 0.6),
            0 8px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(0, 200, 81, 0.9),
            0 8px 25px rgba(0, 0, 0, 0.3);
    }
}


/* Payment Bar */
.payment-bar {
    margin-top: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    padding: 12px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    box-sizing: border-box;
    box-shadow: 
        0 4px 15px rgba(255, 165, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.payment-bar__text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Segoe UI', system-ui, sans-serif;
    white-space: nowrap;
}

.payment-bar__icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 35px;
    border-radius: 8px;
    font-size: 1.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.payment-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* VISA */
.payment-icon--visa {
    background: linear-gradient(135deg, #1a1f71, #2d3494);
    color: #ffffff;
}

/* Mastercard */
.payment-icon--mastercard {
    background: linear-gradient(135deg, #1a1a2e, #2d2d4a);
    color: #ff5f00;
}

/* Bitcoin */
.payment-icon--btc {
    background: linear-gradient(135deg, #f7931a, #ff9500);
    color: #ffffff;
}

/* Ethereum */
.payment-icon--eth {
    background: linear-gradient(135deg, #627eea, #8c9eff);
    color: #ffffff;
}

/* Interac */
.payment-icon--interac {
    background: none;
    width: auto;
    height: 35px;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.payment-icon__img {
    height: 35px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Bonus Card Media Queries */
@media (max-width: 768px) {
    .bonus-card {
        padding: 20px 30px;
        width: 85%;
        bottom: 20px;
    }

    .bonus-card__title {
        font-size: 1.5rem;
    }

    .bonus-card__btn {
        padding: 12px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonus-card {
        padding: 16px 14px 12px;
        width: 95%;
        margin-top: 15px;
    }

    .bonus-card__title {
        font-size: 1.2rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .bonus-card__text,
    .bonus-card__subtext {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .bonus-card__btn {
        padding: 11px 26px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .bonus-card__cta-text {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .payment-bar {
        padding: 10px 15px;
        gap: 10px;
        flex-direction: column;
        margin-top: 14px;
    }

    .payment-bar__text {
        font-size: 0.8rem;
    }

    .payment-bar__icons {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-icon {
        width: 42px;
        height: 30px;
        font-size: 1.1rem;
    }

    .side-character--mobile {
        width: 110px;
        margin-top: 10px;
    }
}

/* ==================== SIDE CHARACTER ==================== */

/* Desktop version */
.side-character--desktop {
    position: fixed;
    left: 30px;
    bottom: 0;
    width: 600px;
    z-index: 100;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.side-character--desktop .side-character__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile version - hidden on desktop */
.side-character--mobile {
    display: none;
}

.side-character__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Side Character Media Queries */
@media (max-width: 1400px) {
    .side-character--desktop {
        width: 500px;
        left: 20px;
    }
}

@media (max-width: 1200px) {
    .side-character--desktop {
        width: 400px;
        left: 10px;
    }
}

@media (max-width: 992px) {
    .side-character--desktop {
        width: 300px;
        left: 5px;
    }
}

@media (max-width: 768px) {
    /* Hide desktop, show mobile */
    .side-character--desktop {
        display: none;
    }

    .side-character--mobile {
        display: block;
        width: 150px;
        margin: 15px auto 0;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    }
}

@media (max-width: 430px) {
    .side-character--mobile {
        width: 130px;
    }
}

@media (max-width: 375px) {
    .side-character--mobile {
        width: 120px;
        margin-top: 10px;
    }
}

@media (max-width: 320px) {
    .side-character--mobile {
        width: 100px;
    }
}