/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

a {
    color: #99ff2b;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #99ff2b;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
    color: inherit;
}

.btn-primary {
    background: linear-gradient(45deg, #99ff2b, #7acc22);
    color: #000000;
    box-shadow: 0 4px 15px rgba(153, 255, 43, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #7acc22, #99ff2b);
    box-shadow: 0 6px 20px rgba(153, 255, 43, 0.5);
    transform: translateY(-2px);
    color: #000000;
}

.btn-secondary {
    background: rgba(153, 255, 43, 0.1);
    color: #99ff2b;
    border: 2px solid #99ff2b;
}

.btn-secondary:hover {
    background: rgba(153, 255, 43, 0.2);
    box-shadow: 0 0 15px rgba(153, 255, 43, 0.3);
}

.btn-outline {
    border: 2px solid #99ff2b;
    color: #99ff2b;
    background: transparent;
}

.btn-outline:hover {
    background: #99ff2b;
    color: #000000;
    box-shadow: 0 0 15px rgba(153, 255, 43, 0.5);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(153, 255, 43, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #99ff2b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #99ff2b, #7acc22);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #99ff2b;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #99ff2b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(153, 255, 43, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section-alt {
    background: rgba(153, 255, 43, 0.02);
    border-top: 1px solid rgba(153, 255, 43, 0.1);
    border-bottom: 1px solid rgba(153, 255, 43, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(153, 255, 43, 0.5));
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(153, 255, 43, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(153, 255, 43, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(153, 255, 43, 0.1);
    box-shadow: 0 10px 30px rgba(153, 255, 43, 0.2);
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: #99ff2b;
    margin-bottom: 1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: rgba(153, 255, 43, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(153, 255, 43, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover {
    background: rgba(153, 255, 43, 0.1);
    box-shadow: 0 15px 40px rgba(153, 255, 43, 0.2);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(153, 255, 43, 0.3));
}

.product-card h3 {
    color: #99ff2b;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #99ff2b;
    margin-top: 1rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: rgba(153, 255, 43, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(153, 255, 43, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    background: rgba(153, 255, 43, 0.1);
    border: 2px solid #99ff2b;
    box-shadow: 0 0 30px rgba(153, 255, 43, 0.3);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(153, 255, 43, 0.2);
}

.pricing-card h3 {
    color: #99ff2b;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #99ff2b;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(153, 255, 43, 0.1);
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Promotions Grid */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.promotion-card {
    background: linear-gradient(135deg, rgba(153, 255, 43, 0.1), rgba(153, 255, 43, 0.05));
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(153, 255, 43, 0.3);
    transition: all 0.3s ease;
}

.promotion-card:hover {
    box-shadow: 0 15px 40px rgba(153, 255, 43, 0.3);
    transform: translateY(-5px);
}

.promotion-card h3 {
    color: #99ff2b;
    margin-bottom: 1rem;
}

.promo-code {
    background: rgba(153, 255, 43, 0.2);
    color: #99ff2b;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 1rem;
    display: inline-block;
}

.promo-highlight {
    color: #99ff2b;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: rgba(153, 255, 43, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(153, 255, 43, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    background: rgba(153, 255, 43, 0.1);
    box-shadow: 0 10px 30px rgba(153, 255, 43, 0.2);
    transform: translateY(-5px);
}

.stars {
    color: #99ff2b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reviewer {
    color: #99ff2b;
    font-weight: 500;
    margin-top: 1rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #99ff2b;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #99ff2b;
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form h3 {
    color: #99ff2b;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #99ff2b;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(153, 255, 43, 0.3);
    border-radius: 5px;
    background: rgba(153, 255, 43, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #99ff2b;
    box-shadow: 0 0 10px rgba(153, 255, 43, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

/* Footer */
.footer {
    background: rgba(5, 5, 5, 0.9);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(153, 255, 43, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #99ff2b;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #99ff2b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(153, 255, 43, 0.1);
    color: #888888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-top: 2px solid #99ff2b;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    color: #99ff2b;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: #1a1a1a;
    margin: 5% auto;
    padding: 2rem;
    border: 2px solid #99ff2b;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    color: #99ff2b;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #ffffff;
}

.cookie-category {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(153, 255, 43, 0.05);
    border-radius: 5px;
    border: 1px solid rgba(153, 255, 43, 0.2);
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #99ff2b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cookie-category input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.cookie-category p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #99ff2b;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(153, 255, 43, 0.3);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #99ff2b;
    margin: 1.5rem 0 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.legal-update {
    text-align: center;
    font-style: italic;
    color: #888888;
    border-top: 1px solid rgba(153, 255, 43, 0.2);
    padding-top: 1rem;
    margin-top: 2rem;
}

/* Thanks Page */
.thanks-page {
    padding: 120px 0 80px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(153, 255, 43, 0.5));
}

.thanks-actions {
    list-style: none;
    margin: 2rem 0;
}

.thanks-actions li {
    margin-bottom: 0.5rem;
}

.thanks-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -110%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-bottom: 1px solid rgba(153, 255, 43, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .section {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .thanks-buttons {
        flex-direction: column;
        align-items: center;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .products-grid,
    .benefits-grid,
    .pricing-grid,
    .promotions-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1.1rem;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(153, 255, 43, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(153, 255, 43, 0.6);
    }
}

.section-icon {
    animation: glow 2s ease-in-out infinite;
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #99ff2b;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-title {
        background: none;
        -webkit-text-fill-color: initial;
        color: #ffffff;
    }
}
