:root {
    --primary: #0a0a16;
    --secondary: #12122a;
    --accent: #0f3460;
    --highlight: #00d4ff;
    --neon: #00ffcc;
    --premium-gold: #ffd700;
    --premium-purple: #8a2be2;
    --text: #ffffff;
    --light-text: #b8b8b8;
    --glow: 0 0 10px var(--highlight), 0 0 20px var(--highlight), 0 0 30px var(--highlight);
    --premium-glow: 0 0 15px var(--premium-gold), 0 0 25px rgba(255, 215, 0, 0.5);
    --soft-glow: 0 0 15px rgba(0, 212, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: radial-gradient(circle at top right, #1a1a2e, #0a0a16);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(15, 52, 96, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 255, 204, 0.15) 0%, transparent 50%);
    z-index: -1;
}

/* Header Styles */
header {
    background: rgba(18, 18, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--premium-gold), var(--premium-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid var(--premium-gold);
    box-shadow: var(--premium-glow);
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% { box-shadow: 0 0 10px var(--premium-gold), 0 0 20px var(--premium-gold); }
    100% { box-shadow: 0 0 15px var(--premium-gold), 0 0 30px var(--premium-gold), 0 0 40px var(--premium-gold); }
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--premium-gold), var(--premium-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Animated background elements */
.floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.5; }
}

/* Menu Overlay */
.menu-toggle {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
    transition: all 0.3s;
}

.menu-toggle:hover {
    color: var(--premium-gold);
    text-shadow: var(--premium-glow);
}

.overlay-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background: rgba(18, 18, 42, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.7);
    transition: right 0.4s ease;
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 215, 0, 0.3);
}

.overlay-menu.active {
    right: 0;
}

.overlay-menu h2 {
    margin-bottom: 1.5rem;
    color: var(--premium-gold);
    border-bottom: 1px solid var(--premium-purple);
    padding-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.overlay-menu ul {
    list-style: none;
}

.overlay-menu li {
    margin-bottom: 1rem;
}

.overlay-menu a {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.overlay-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: var(--premium-glow);
    transform: translateX(5px);
}

.overlay-menu .whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
}

.overlay-menu .whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.close-menu:hover {
    color: var(--premium-gold);
    text-shadow: var(--premium-glow);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 10, 22, 0.85), rgba(10, 10, 22, 0.9)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(138, 43, 226, 0.1));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--premium-gold), var(--premium-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6); }
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--light-text);
}

.cta-button {
    background: linear-gradient(45deg, var(--premium-purple), var(--premium-gold));
    color: var(--primary);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-button::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: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

/* Products Section */
.products {
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--premium-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--premium-gold), transparent);
    box-shadow: 0 0 10px var(--premium-gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: rgba(18, 18, 42, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }
.product-card:nth-child(9) { animation-delay: 0.9s; }
.product-card:nth-child(10) { animation-delay: 1.0s; }
.product-card:nth-child(11) { animation-delay: 1.1s; }
.product-card:nth-child(12) { animation-delay: 1.2s; }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), var(--premium-glow);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(18, 18, 42, 0.9));
}

.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, var(--premium-gold), var(--premium-purple));
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--premium-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.product-description {
    color: var(--light-text);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--premium-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.select-btn {
    background: linear-gradient(45deg, var(--premium-purple), var(--premium-gold));
    color: var(--primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

.select-btn:hover::before {
    left: 100%;
}

.select-btn:hover {
    background: linear-gradient(45deg, var(--premium-gold), var(--premium-purple));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Product Details Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(18, 18, 42, 0.95);
    width: 90%;
    max-width: 550px;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), var(--premium-glow);
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: modalAppear 0.4s ease;
}

@keyframes modalAppear {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.close-modal {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.close-modal:hover {
    color: var(--premium-gold);
    text-shadow: var(--premium-glow);
}

.modal-title {
    margin-bottom: 1.5rem;
    color: var(--premium-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    font-size: 1.8rem;
}

.price-options {
    margin: 1.8rem 0;
}

.price-option {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.price-option:hover {
    background: rgba(255, 215, 0, 0.05);
    border-bottom: 1px solid rgba(255, 215, 0, 0.4);
}

.price-option:last-child {
    border-bottom: none;
}

.price-option input[type="radio"] {
    accent-color: var(--premium-gold);
}

.order-btn {
    background: linear-gradient(45deg, var(--premium-purple), var(--premium-gold));
    color: var(--primary);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.order-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: 0.5s;
}

.order-btn:hover::before {
    left: 100%;
}

.order-btn:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    transform: translateY(-3px);
}

/* Contact Method Selection Styles */
.contact-method {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(18, 18, 42, 0.7);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.contact-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: var(--premium-glow);
}

.contact-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(37, 211, 102, 0.5);
}

.telegram-btn {
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.telegram-btn:hover {
    background: rgba(0, 136, 204, 0.2);
    border: 1px solid rgba(0, 136, 204, 0.5);
}

.contact-message {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    display: none;
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: var(--premium-gold);
}

.back-btn {
    background: rgba(18, 18, 42, 0.7);
    color: var(--text);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    width: 100%;
}

.back-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.5);
}

/* Loading Spinner */
.loading-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 215, 0, 0.3);
    border-top: 5px solid var(--premium-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--premium-gold);
}

.loading-countdown {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--premium-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Countdown */
.countdown {
    text-align: center;
    font-size: 1.3rem;
    margin: 1.5rem 0;
    color: var(--premium-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    display: none;
    animation: pulse 1s infinite alternate;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background: rgba(18, 18, 42, 0.5);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 1.2rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-bottom: 1px solid rgba(255, 215, 0, 0.4);
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--premium-gold);
}

.faq-answer {
    margin-top: 0.8rem;
    color: var(--light-text);
    display: none;
    padding-left: 1rem;
    border-left: 2px solid var(--premium-gold);
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Testimonials */
.testimonials {
    padding: 4rem 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(18, 18, 42, 0.7);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), var(--premium-glow);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--premium-gold);
    opacity: 0.5;
}

.testimonial-author {
    font-weight: bold;
    color: var(--premium-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Footer */
footer {
    background: rgba(10, 10, 22, 0.9);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.creator {
    margin-top: 1.5rem;
    color: var(--light-text);
    font-size: 1.1rem;
}

.creator span {
    color: var(--premium-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.heart {
    color: #ff2e4f;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Search Bar */
.search-container {
    display: flex;
    align-items: center;
    margin: 2rem auto;
    max-width: 500px;
}

.search-bar {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(18, 18, 42, 0.7);
    color: var(--text);
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.search-bar:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    border: 1px solid var(--premium-gold);
}

.search-btn {
    background: var(--premium-gold);
    color: var(--primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.search-btn:hover {
    background: var(--premium-purple);
    color: var(--text);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

/* Categories Filter */
.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.category-btn {
    background: rgba(18, 18, 42, 0.7);
    color: var(--text);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active, .category-btn:hover {
    background: var(--premium-gold);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Special Offers Banner */
.offers-banner {
    background: linear-gradient(45deg, var(--premium-purple), var(--premium-gold));
    padding: 1.5rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: bannerPulse 3s infinite alternate;
}

@keyframes bannerPulse {
    0% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); }
    100% { box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5); }
}

.offers-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.offers-banner p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter {
    background: rgba(18, 18, 42, 0.7);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 800px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.newsletter h3 {
    margin-bottom: 1rem;
    color: var(--premium-gold);
}

.newsletter p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 50px 0 0 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(10, 10, 22, 0.7);
    color: var(--text);
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    border: 1px solid var(--premium-gold);
}

.newsletter-btn {
    background: var(--premium-gold);
    color: var(--primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: var(--premium-purple);
    color: var(--text);
}

/* Statistics Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    background: rgba(18, 18, 42, 0.7);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), var(--premium-glow);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--premium-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-text {
    color: var(--light-text);
}

/* Live Support Button */
.live-support {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(45deg, var(--premium-purple), var(--premium-gold));
    color: var(--primary);
    border: none;
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.5);
    transition: all 0.3s;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.live-support:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.7);
}

/* WhatsApp Bot Offer Popup */
.offer-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.offer-content {
    background: linear-gradient(135deg, rgba(18, 18, 42, 0.95), rgba(138, 43, 226, 0.95));
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    animation: popupAppear 0.5s ease;
}

@keyframes popupAppear {
    from { opacity: 0; transform: scale(0.8) translateY(-20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(45deg, var(--premium-gold), var(--premium-purple));
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.offer-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--premium-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.offer-description {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-size: 1.1rem;
}

.offer-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--premium-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.offer-timer {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.timer-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.timer-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--premium-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.offer-btn {
    background: linear-gradient(45deg, var(--premium-purple), var(--premium-gold));
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    width: 100%;
    margin-bottom: 1rem;
}

.offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

.close-offer {
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.close-offer:hover {
    color: var(--premium-gold);
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    .site-title {
        font-size: 1.5rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-input {
        border-radius: 50px;
        margin-bottom: 0.5rem;
    }
    .newsletter-btn {
        border-radius: 50px;
    }
    .offer-content {
        padding: 2rem 1.5rem;
    }
    .offer-title {
        font-size: 1.7rem;
    }
}