:root {
    --light-green: #a8ff60;         /* Vibrant green */
    --accent-yellow: #ffe066;       /* Bright yellow */
    --glow-green: #a8ff6070;        /* Soft green glow */
    --light-grey: #ffffff;          /* Blackish grey */
    --white: #fff;
    --dark-bg: #181a1b;             /* Main dark background */
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 0;
    position: relative;
    overflow: visible;
    overflow-x: hidden;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
    animation: fadeInLeft 1.2s ease-out forwards;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
}
.hero-title span {
    color: var(--light-green);
    text-shadow: 0 0 15px var(--glow-green);
    position: relative;
    display: inline-block;
}
.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--light-green);
    box-shadow: 0 0 10px var(--glow-green);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--light-grey);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--light-grey);
    max-width: 600px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(30, 44, 14, 0.6);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid rgba(126, 217, 87, 0.2);
    transition: all 0.3s ease;
}
.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(126, 217, 87, 0.2);
    border-color: rgba(126, 217, 87, 0.4);
}
.badge i {
    color: var(--light-green);
    filter: drop-shadow(0 0 5px rgba(126, 217, 87, 0.377));
    transition: all 0.3s ease;
}
.badge:hover i {
    filter: drop-shadow(0 0 8px rgba(126, 217, 87, 0.7));
}

.hero-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 44, 14, 0.7);
    border: 1px solid rgba(126, 217, 87, 0.3);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition:
        background 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s,
        box-shadow 0.4s,
        transform 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(126, 217, 87, 0.2);
    cursor: pointer;
}
.cta-button i {
    color: var(--light-green);
    filter: drop-shadow(0 0 5px rgba(126, 217, 87, 0.377));
    transition: filter 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
    transition: left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    pointer-events: none;
}
.cta-button:hover {
    background: rgba(126, 217, 87, 0.13);
    color: var(--white);
    border-color: var(--light-green);
    box-shadow: 0 8px 18px rgba(126, 217, 87, 0.13), 0 0 12px rgba(255, 224, 102, 0.10);
    transform: translateY(-2px) scale(1.0);
}
.cta-button:hover::before {
    left: 100%;
}
.cta-button:hover i {
    color: #ffe066;
    filter: drop-shadow(0 0 7px #ffe066);
    transform: scale(1.1) rotate(-6deg);
}

/* Section Subtitle */
.section-subtitle {
    font-size: 20px !important;
    letter-spacing: 2px !important;
    font-weight: 500 !important;
    margin: 10px auto 40px !important;
    position: relative !important;
    display: inline-block !important;
    padding: 6px 20px !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    background-color: rgba(30, 44, 14, 0.7) !important;
    transform: perspective(500px) rotateX(0deg) !important;
    transition: all 0.3s ease !important;
    color: #fff !important;
    text-shadow: 0 0 10px rgba(126, 217, 87, 0.5) !important;
    border: 1px solid rgba(126, 217, 87, 0.3) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(126, 217, 87, 0.2) !important;
    overflow: hidden !important;
}
.section-subtitle::before,
.section-subtitle::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    width: 30px !important;
    height: 2px !important;
    transform: translateY(-50%) !important;
    background: linear-gradient(90deg, transparent, var(--light-green), transparent) !important;
    box-shadow: 0 0 8px rgba(126, 217, 87, 0.5) !important;
}
.section-subtitle::before {
    left: -40px !important;
}
.section-subtitle::after {
    right: -40px !important;
}
.section-subtitle:hover {
    transform: perspective(500px) rotateX(5deg) translateY(-5px) !important;
}
.section-subtitle::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent) !important;
    transition: left 0.7s !important;
}
.section-subtitle:hover::after {
    left: 100% !important;
}
@keyframes subtitle-pulse-green {
    0% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(126, 217, 87, 0.2); }
    50% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(126, 217, 87, 0.4); }
    100% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(126, 217, 87, 0.2); }
}
.section-subtitle {
    animation: subtitle-pulse-green 3s infinite ease-in-out !important;
}

/* Hero Image */
.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    animation: fadeInRight 1.2s ease-out forwards;
    overflow: visible;
}
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: visible;
}
.main-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(126, 217, 87, 0.3);
    transition: all 0.5s ease;
    background-color: #1e2c0e;
    aspect-ratio: 3/2;
    position: relative;
    z-index: 1;
}
.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(126, 217, 87, 0.3);
    pointer-events: none;
    animation: glow-pulse 3s infinite ease-in-out;
}
@keyframes glow-pulse {
    0% { box-shadow: 0 0 30px rgba(126, 217, 87, 0.3); }
    50% { box-shadow: 0 0 50px rgba(255, 224, 102, 0.5); }
    100% { box-shadow: 0 0 30px rgba(126, 217, 87, 0.3); }
}
.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(30, 44, 14, 0.85);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid rgba(126, 217, 87, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(126, 217, 87, 0.3);
    transition: all 0.3s ease;
    animation: float 5s infinite ease-in-out;
    pointer-events: auto;
}
.float-badge i {
    color: var(--light-green);
    font-size: 16px;
}
.float-badge.fb-1 {
    top: 10%;
    left: -10px;
    animation-delay: 0s;
}
.float-badge.fb-2 {
    bottom: 20%;
    right: -10px;
    left: auto;
    animation-delay: 1s;
}
.float-badge.fb-3 {
    bottom: -10px;
    left: 25%;
    animation-delay: 2s;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    position: relative;
    text-align: center;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.feature-card {
    background-color: rgba(30, 44, 14, 0.6);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(126, 217, 87, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(126, 217, 87, 0.2);
    border-color: rgba(126, 217, 87, 0.4);
}
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(30, 44, 14, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(126, 217, 87, 0.2);
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    background-color: rgba(255, 224, 102, 0.1);
    border-color: rgba(126, 217, 87, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 224, 102, 0.3);
}
.feature-icon i {
    font-size: 30px;
    color: var(--light-green);
    filter: drop-shadow(0 0 5px rgba(126, 217, 87, 0.5));
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 224, 102, 0.7));
}
.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.feature-desc {
    color: var(--light-grey);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    position: relative;
    text-align: center;
}
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.pricing-card {
    background-color: rgba(30, 44, 14, 0.6);
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid rgba(126, 217, 87, 0.2);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(126, 217, 87, 0.3);
    border-color: rgba(126, 217, 87, 0.4);
    z-index: 1;
}
.pricing-card.featured {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(126, 217, 87, 0.3);
    border: 2px solid var(--light-green);
    z-index: 2;
    position: relative;
}
.pricing-card.featured::before {
    display: none;
    -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;
    animation: border-spin 2.5s linear infinite;
    z-index: 3;
    pointer-events: none;
}
@keyframes border-spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

/* Lightning particles */
.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 120%;
    height: 120%;
    pointer-events: none;
    background:
        radial-gradient(circle at 80% 20%, #ffe066cc 0 8px, transparent 12px),
        radial-gradient(circle at 30% 90%, #fff700bb 0 6px, transparent 10px),
        radial-gradient(circle at 60% 60%, #fff 0 4px, transparent 8px);
    opacity: 0;
    animation: lightning-particles 3s infinite;
    z-index: 4;
    transform: translate(-50%, -50%);
}
@keyframes lightning-particles {
    0%, 90%, 100% { opacity: 0; }
    10% { opacity: 1; }
    12% { opacity: 0; }
    50% { opacity: 0; }
    60% { opacity: 1; }
    62% { opacity: 0; }
}
.pricing-card.featured:hover {
    /* No scaling, only move up slightly */
    transform: translateY(-15px);
}
.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(30, 44, 14, 0.8);
    color: var(--light-green);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: 1px solid rgba(126, 217, 87, 0.3);
}
.save-badge {
    display: inline-block;
    margin-bottom: 10px;
    background-color: rgba(255, 224, 102, 0.2);
    color: #ffe066;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 224, 102, 0.3);
}
.pricing-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}
.pricing-price {
    text-align: center;
    margin-bottom: 15px;
}
.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--light-green);
    text-shadow: 0 0 10px rgba(126, 217, 87, 0.3);
}
.period {
    font-size: 16px;
    color: var(--light-grey);
}
.pricing-description {
    text-align: center;
    color: var(--light-grey);
    margin-bottom: 25px;
    line-height: 1.6;
}
.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}
.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--light-grey);
}
.pricing-features i {
    color: var(--light-green);
    font-size: 16px;
}
.pricing-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: rgba(30, 44, 14, 0.7);
    color: var(--white);
    padding: 15px 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(126, 217, 87, 0.3);
    transition:
        background 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s,
        box-shadow 0.4s,
        transform 0.3s;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(126, 217, 87, 0.2);
    cursor: pointer;
}
.pricing-button i {
    color: var(--light-green);
    filter: drop-shadow(0 0 5px rgba(126, 217, 87, 0.377));
    transition: filter 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pricing-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
    transition: left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    pointer-events: none;
}
.pricing-button:hover {
    background: rgba(126, 217, 87, 0.13);
    color: var(--white);
    border-color: var(--light-green);
    box-shadow: 0 8px 18px rgba(126, 217, 87, 0.13), 0 0 12px rgba(255, 224, 102, 0.10);
    transform: translateY(-2px) scale(1.0);
}
.pricing-button:hover::before {
    left: 100%;
}
.pricing-button:hover i {
    color: #ffe066;
    filter: drop-shadow(0 0 7px #ffe066);
    transform: scale(1.1) rotate(-6deg);
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(30, 44, 14, 0.7);
    border-radius: 10px;
    padding: 25px;
    max-width: 800px;
    margin: 50px auto 0;
    border: 1px solid rgba(126, 217, 87, 0.2);
    transition: all 0.3s ease;
}
.guarantee-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(126, 217, 87, 0.2);
    border-color: rgba(126, 217, 87, 0.3);
}
.guarantee-icon {
    font-size: 40px;
    color: var(--light-green);
    filter: drop-shadow(0 0 5px rgba(126, 217, 87, 0.5));
}
.guarantee-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.guarantee-content p {
    color: var(--light-grey);
    line-height: 1.6;
}

/* Payment Methods Section */
.payment-methods {
    text-align: center;
    padding: 20px 0;
    margin: 40px auto 0;
    max-width: 800px;
    transition: all 0.3s ease;
}
.payment-methods:hover {
    transform: translateY(-5px);
}
.payment-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-grey);
    letter-spacing: 1px;
}
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.payment-icon {
    width: 60px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    color: #333;
    font-size: 24px;
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: calc(var(--i) * 0.1s);
    opacity: 0;
    transform: translateY(20px);
}
.payment-icon.crypto {
    background-color: #f6f6f6;
    color: #f7931a; /* Bitcoin orange */
}
.payment-icon.paypal {
    background-color: #f6f6f6;
    color: #003087; /* PayPal blue */
}
.payment-icon.visa {
    background-color: #f6f6f6;
    color: #1a1f71; /* Visa blue */
}
.payment-icon.apple {
    background-color: #000;
    color: #fff; /* Apple Pay: black bg, white icon */
}
.payment-icon.mastercard {
    background-color: #f6f6f6;
    color: #eb001b; /* Mastercard red */
}
.payment-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.payment-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.7s ease-in-out;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}
.payment-icon:hover::after {
    opacity: 1;
    animation: shine 1.5s infinite forwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        padding-right: 0;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-title {
        font-size: 42px;
    }
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
        max-width: 100%;
    }
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    .payment-icons {
        gap: 15px;
    }
    .payment-icon {
        width: 50px;
        height: 35px;
        font-size: 20px;
    }
}

/* Remove shine ONLY from pricing cards/display elements */
.pricing-card::after,
.pricing-card::before {
    display: none;
}

/* Public Sell.app buttons styling - cursor pointer fix only */
button[data-sell-store="55114"] {
    cursor: pointer !important;
}
button[data-sell-store="55114"] span,
button[data-sell-store="55114"] i {
    position: relative;
    z-index: 2;
}
/* Hero Section */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 0;
    position: relative;
    overflow: visible;
    overflow-x: hidden;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
    animation: fadeInLeft 1.2s ease-out forwards;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
}
.hero-title span {
    color: var(--light-green);
    text-shadow: 0 0 15px var(--glow-green);
    position: relative;
    display: inline-block;
}
.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--light-green);
    box-shadow: 0 0 10px var(--glow-green);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--light-grey);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--light-grey);
    max-width: 600px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(30, 44, 14, 0.6);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid rgba(126, 217, 87, 0.2);
    transition: all 0.3s ease;
}
.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(126, 217, 87, 0.2);
    border-color: rgba(126, 217, 87, 0.4);
}
.badge i {
    color: var(--light-green);
    filter: drop-shadow(0 0 5px rgba(126, 217, 87, 0.377));
    transition: all 0.3s ease;
}
.badge:hover i {
    filter: drop-shadow(0 0 8px rgba(126, 217, 87, 0.7));
}

.hero-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 44, 14, 0.7);
    border: 1px solid rgba(126, 217, 87, 0.3);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition:
        background 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s,
        box-shadow 0.4s,
        transform 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(126, 217, 87, 0.2);
    cursor: pointer;
}
.cta-button i {
    color: var(--light-green);
    filter: drop-shadow(0 0 5px rgba(126, 217, 87, 0.377));
    transition: filter 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
    transition: left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    pointer-events: none;
}
.cta-button:hover {
    background: rgba(126, 217, 87, 0.13);
    color: var(--white);
    border-color: var(--light-green);
    box-shadow: 0 8px 18px rgba(126, 217, 87, 0.13), 0 0 12px rgba(255, 224, 102, 0.10);
    transform: translateY(-2px) scale(1.0);
}
.cta-button:hover::before {
    left: 100%;
}
.cta-button:hover i {
    color: #ffe066;
    filter: drop-shadow(0 0 7px #ffe066);
    transform: scale(1.1) rotate(-6deg);
}

/* Section Subtitle */
.section-subtitle {
    font-size: 20px !important;
    letter-spacing: 2px !important;
    font-weight: 500 !important;
    margin: 10px auto 40px !important;
    position: relative !important;
    display: inline-block !important;
    padding: 6px 20px !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    background-color: rgba(30, 44, 14, 0.7) !important;
    transform: perspective(500px) rotateX(0deg) !important;
    transition: all 0.3s ease !important;
    color: #fff !important;
    text-shadow: 0 0 10px rgba(126, 217, 87, 0.5) !important;
    border: 1px solid rgba(126, 217, 87, 0.3) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(126, 217, 87, 0.2) !important;
    overflow: hidden !important;
}
.section-subtitle::before,
.section-subtitle::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    width: 30px !important;
    height: 2px !important;
    transform: translateY(-50%) !important;
    background: linear-gradient(90deg, transparent, var(--light-green), transparent) !important;
    box-shadow: 0 0 8px rgba(126, 217, 87, 0.5) !important;
}
.section-subtitle::before {
    left: -40px !important;
}
.section-subtitle::after {
    right: -40px !important;
}
.section-subtitle:hover {
    transform: perspective(500px) rotateX(5deg) translateY(-5px) !important;
}
.section-subtitle::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent) !important;
    transition: left 0.7s !important;
}
.section-subtitle:hover::after {
    left: 100% !important;
}
@keyframes subtitle-pulse-green {
    0% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(126, 217, 87, 0.2); }
    50% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(126, 217, 87, 0.4); }
    100% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(126, 217, 87, 0.2); }
}
.section-subtitle {
    animation: subtitle-pulse-green 3s infinite ease-in-out !important;
}

/* Hero Image */
.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    animation: fadeInRight 1.2s ease-out forwards;
    overflow: visible;
}
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: visible;
}
.main-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(126, 217, 87, 0.3);
    transition: all 0.5s ease;
    background-color: #1e2c0e;
    aspect-ratio: 3/2;
    position: relative;
    z-index: 1;
}
.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(126, 217, 87, 0.3);
    pointer-events: none;
    animation: glow-pulse 3s infinite ease-in-out;
}
@keyframes glow-pulse {
    0% { box-shadow: 0 0 30px rgba(126, 217, 87, 0.3); }
    50% { box-shadow: 0 0 50px rgba(255, 224, 102, 0.5); }
    100% { box-shadow: 0 0 30px rgba(126, 217, 87, 0.3); }
}
.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(30, 44, 14, 0.85);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid rgba(126, 217, 87, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(126, 217, 87, 0.3);
    transition: all 0.3s ease;
    animation: float 5s infinite ease-in-out;
    pointer-events: auto;
}
.float-badge i {
    color: var(--light-green);
    font-size: 16px;
}
.float-badge.fb-1 {
    top: 10%;
    left: -10px;
    animation-delay: 0s;
}
.float-badge.fb-2 {
    bottom: 20%;
    right: -10px;
    left: auto;
    animation-delay: 1s;
}
.float-badge.fb-3 {
    bottom: -10px;
    left: 25%;
    animation-delay: 2s;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    position: relative;
    text-align: center;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.feature-card {
    background-color: rgba(30, 44, 14, 0.6);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(126, 217, 87, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(126, 217, 87, 0.2);
    border-color: rgba(126, 217, 87, 0.4);
}
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(30, 44, 14, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(126, 217, 87, 0.2);
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    background-color: rgba(255, 224, 102, 0.1);
    border-color: rgba(126, 217, 87, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 224, 102, 0.3);
}
.feature-icon i {
    font-size: 30px;
    color: var(--light-green);
    filter: drop-shadow(0 0 5px rgba(126, 217, 87, 0.5));
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 224, 102, 0.7));
}
.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.feature-desc {
    color: var(--light-grey);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    position: relative;
    text-align: center;
}
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.pricing-card {
    background-color: rgba(30, 44, 14, 0.6);
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid rgba(126, 217, 87, 0.2);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(126, 217, 87, 0.3);
    border-color: rgba(126, 217, 87, 0.4);
    z-index: 1;
}
.pricing-card.featured {
    box-shadow: 0 0 24px 4px #ffe066, 0 0 15px 2px #fff, 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    z-index: 2;
    position: relative;
}
.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 20px;
    padding: 2px;
    background: conic-gradient(
        #ffe066 0% 10%,
        #fff700 10% 20%,
        #ffe066 20% 40%,
        #fff 40% 50%,
        #ffe066 50% 70%,
        #fff700 70% 80%,
        #ffe066 80% 100%
    );
    -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;
    animation: border-spin 2.5s linear infinite;
    z-index: 3;
    pointer-events: none;
}
@keyframes border-spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

/* Lightning particles */
.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 120%;
    height: 120%;
    pointer-events: none;
    background:
        radial-gradient(circle at 80% 20%, #ffe066cc 0 8px, transparent 12px),
        radial-gradient(circle at 30% 90%, #fff700bb 0 6px, transparent 10px),
        radial-gradient(circle at 60% 60%, #fff 0 4px, transparent 8px);
    opacity: 0;
    animation: lightning-particles 3s infinite;
    z-index: 4;
    transform: translate(-50%, -50%);
}
@keyframes lightning-particles {
    0%, 90%, 100% { opacity: 0; }
    10% { opacity: 1; }
    12% { opacity: 0; }
    50% { opacity: 0; }
    60% { opacity: 1; }
    62% { opacity: 0; }
}
.pricing-card.featured:hover {
    /* No scaling, only move up slightly */
    transform: translateY(-15px);
}
.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(30, 44, 14, 0.8);
    color: var(--light-green);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: 1px solid rgba(126, 217, 87, 0.3);
}
.save-badge {
    display: inline-block;
    margin-bottom: 10px;
    background-color: rgba(255, 224, 102, 0.2);
    color: #ffe066;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 224, 102, 0.3);
}
.pricing-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}
.pricing-price {
    text-align: center;
    margin-bottom: 15px;
}
.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--light-green);
    text-shadow: 0 0 10px rgba(126, 217, 87, 0.3);
}
.period {
    font-size: 16px;
    color: var(--light-grey);
}
.pricing-description {
    text-align: center;
    color: var(--light-grey);
    margin-bottom: 25px;
    line-height: 1.6;
}
.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}
.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--light-grey);
}
.pricing-features i {
    color: var(--light-green);
    font-size: 16px;
}
.pricing-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: rgba(30, 44, 14, 0.7);
    color: var(--white);
    padding: 15px 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(126, 217, 87, 0.3);
    transition:
        background 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s,
        box-shadow 0.4s,
        transform 0.3s;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(126, 217, 87, 0.2);
    cursor: pointer;
}
.pricing-button i {
    color: var(--light-green);
    filter: drop-shadow(0 0 5px rgba(126, 217, 87, 0.377));
    transition: filter 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pricing-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
    transition: left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    pointer-events: none;
}
.pricing-button:hover {
    background: rgba(126, 217, 87, 0.13);
    color: var(--white);
    border-color: var(--light-green);
    box-shadow: 0 8px 18px rgba(126, 217, 87, 0.13), 0 0 12px rgba(255, 224, 102, 0.10);
    transform: translateY(-2px) scale(1.0);
}
.pricing-button:hover::before {
    left: 100%;
}
.pricing-button:hover i {
    color: #ffe066;
    filter: drop-shadow(0 0 7px #ffe066);
    transform: scale(1.1) rotate(-6deg);
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(30, 44, 14, 0.7);
    border-radius: 10px;
    padding: 25px;
    max-width: 800px;
    margin: 50px auto 0;
    border: 1px solid rgba(126, 217, 87, 0.2);
    transition: all 0.3s ease;
}
.guarantee-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(126, 217, 87, 0.2);
    border-color: rgba(126, 217, 87, 0.3);
}
.guarantee-icon {
    font-size: 40px;
    color: var(--light-green);
    filter: drop-shadow(0 0 5px rgba(126, 217, 87, 0.5));
}
.guarantee-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.guarantee-content p {
    color: var(--light-grey);
    line-height: 1.6;
}

/* Payment Methods Section */
.payment-methods {
    text-align: center;
    padding: 20px 0;
    margin: 40px auto 0;
    max-width: 800px;
    transition: all 0.3s ease;
}
.payment-methods:hover {
    transform: translateY(-5px);
}
.payment-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-grey);
    letter-spacing: 1px;
}
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.payment-icon {
    width: 60px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    color: #333;
    font-size: 24px;
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: calc(var(--i) * 0.1s);
    opacity: 0;
    transform: translateY(20px);
}
.payment-icon.crypto {
    background-color: #f6f6f6;
    color: #f7931a; /* Bitcoin orange */
}
.payment-icon.paypal {
    background-color: #f6f6f6;
    color: #003087; /* PayPal blue */
}
.payment-icon.visa {
    background-color: #f6f6f6;
    color: #1a1f71; /* Visa blue */
}
.payment-icon.apple {
    background-color: #000;
    color: #fff; /* Apple Pay: black bg, white icon */
}
.payment-icon.mastercard {
    background-color: #f6f6f6;
    color: #eb001b; /* Mastercard red */
}
.payment-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.payment-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.7s ease-in-out;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}
.payment-icon:hover::after {
    opacity: 1;
    animation: shine 1.5s infinite forwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        padding-right: 0;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-title {
        font-size: 42px;
    }
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
        max-width: 100%;
    }
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    .payment-icons {
        gap: 15px;
    }
    .payment-icon {
        width: 50px;
        height: 35px;
        font-size: 20px;
    }
}

/* Remove shine ONLY from pricing cards/display elements */
.pricing-card::after,
.pricing-card::before {
    display: none;
}

/* Public Sell.app buttons styling - cursor pointer fix only */
button[data-sell-store="55114"] {
    cursor: pointer !important;
}
button[data-sell-store="55114"] span,
button[data-sell-store="55114"] i {
    position: relative;
    z-index: 2;
}
