/* Willitary Fitness - Main Stylesheet */
/* Colors matching logo: Black (#000000) and Neon Green (#00FF00) */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #00FF00;
    --primary-glow: #00FF00;
    --secondary-color: #0A0A0A;
    --bg-dark: #000000;
    --bg-gray: #111111;
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
    --text-dim: #888888;
    --border-color: #00FF00;
    --shadow-glow: 0 0 20px rgba(0, 255, 0, 0.5);
    --transition: all 0.3s ease;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    padding-top: 80px;
}

/* ===== Custom Scrollbar ===== */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc00;
    box-shadow: 0 0 10px var(--primary-color);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-dark);
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-light);
}

p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== Navigation ===== */
.navbar {
    background-color: var(--bg-dark);
    border-bottom: 2px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 255, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.nav-menu .shop-link {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid transparent;
    padding: 0.5rem 1rem;
    border-radius: 3px;
}

.nav-menu .shop-link:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.nav-menu .btn {
    padding: 0.5rem 1rem !important;
    border-radius: 3px;
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
    border: 2px solid transparent !important;
    height: auto;
    white-space: nowrap;
}

.nav-menu .btn-primary {
    background-color: transparent !important;
    color: var(--text-light) !important;
    border: 2px solid transparent !important;
}

.nav-menu .btn-primary:hover {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: var(--shadow-glow) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-gray) 100%);
    border-bottom: 3px solid var(--primary-color);
    overflow: hidden;
    animation: hero-glitch 8s infinite;
    will-change: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 0, 0.03) 2px, rgba(0, 255, 0, 0.03) 4px);
    pointer-events: none;
    animation: scanlines 0.8s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(0, 255, 0, 0) 0%, 
        rgba(0, 255, 0, 0.1) 50%, 
        rgba(0, 255, 0, 0) 100%);
    pointer-events: none;
    animation: glitch-bg 1.5s infinite;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin: 1.5rem 0 2rem;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--primary-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes hero-glitch {
    0%, 100% {
        text-shadow: -2px 0 var(--primary-color), 2px 0 #ff00ff;
    }
    20% {
        transform: translateX(2px);
        text-shadow: -2px 0 #ff00ff, 2px 0 var(--primary-color);
    }
    40% {
        transform: translateX(-2px);
        text-shadow: -2px 0 var(--primary-color), 2px 0 #ff00ff;
    }
    60% {
        transform: translateX(1px);
    }
    80% {
        transform: translateX(-1px);
    }
}

@keyframes glitch-bg {
    0% {
        clip-path: inset(0 0 0 0);
    }
    20% {
        clip-path: inset(10% 0 85% 0);
    }
    40% {
        clip-path: inset(50% 0 40% 0);
    }
    60% {
        clip-path: inset(5% 0 75% 0);
    }
    80% {
        clip-path: inset(30% 0 60% 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 31px, 0); }
    25% { clip: rect(70px, 9999px, 71px, 0); }
    50% { clip: rect(30px, 9999px, 90px, 0); }
    75% { clip: rect(60px, 9999px, 20px, 0); }
    100% { clip: rect(80px, 9999px, 40px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    25% { clip: rect(90px, 9999px, 50px, 0); }
    50% { clip: rect(10px, 9999px, 80px, 0); }
    75% { clip: rect(50px, 9999px, 100px, 0); }
    100% { clip: rect(20px, 9999px, 70px, 0); }
}

/* ===== Sections ===== */
section {
    padding: 5rem 0;
}

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

.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-gray) 100%);
    border-bottom: 3px solid var(--primary-color);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* ===== Features Grid ===== */
.features {
    background-color: var(--bg-gray);
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-dark);
    border: 2px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Daily Video Section ===== */
.daily-video {
    background-color: var(--bg-dark);
}

.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.video-placeholder {
    background-color: var(--bg-gray);
    border: 3px solid var(--primary-color);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    box-shadow: var(--shadow-glow);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--primary-glow);
}

.video-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.video-meta {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.video-description {
    margin-bottom: 2rem;
}

/* ===== Stats Section ===== */
.stats {
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-dark) 100%);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-glow);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== About Section ===== */
.about {
    background-color: var(--bg-gray);
}

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

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

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-gray) 100%);
    border: 3px solid var(--primary-color);
    text-align: center;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Video Library ===== */
.library-controls {
    background-color: var(--bg-gray);
    padding: 2rem 0;
    border-bottom: 2px solid var(--primary-color);
}

.controls-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-box {
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    flex: 1;
    padding: 1rem;
    background-color: var(--bg-dark);
    border: 2px solid var(--primary-color);
    color: var(--text-light);
    font-size: 1rem;
}

.search-box input:focus {
    outline: none;
    box-shadow: var(--shadow-glow);
}

.search-btn {
    padding: 1rem 1.5rem;
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.search-btn:hover {
    box-shadow: var(--shadow-glow);
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filters select {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    background-color: var(--bg-dark);
    border: 2px solid var(--primary-color);
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
}

.filters select:focus {
    outline: none;
    box-shadow: var(--shadow-glow);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background-color: var(--bg-gray);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.video-thumbnail {
    position: relative;
    background-color: var(--bg-dark);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-overlay {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.video-card:hover .play-overlay {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-glow);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--primary-color);
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.difficulty-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.difficulty-badge.beginner {
    background-color: #00FF00;
    color: #000;
}

.difficulty-badge.intermediate {
    background-color: #FFFF00;
    color: #000;
}

.difficulty-badge.advanced {
    background-color: #FF8800;
    color: #000;
}

.difficulty-badge.elite {
    background-color: #FF0000;
    color: #FFF;
}

.video-details {
    padding: 1.5rem;
}

.video-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.video-desc {
    font-size: 0.9rem;
    margin: 1rem 0;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

/* ===== Pricing Section ===== */
.pricing {
    background-color: var(--bg-dark);
}

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

.pricing-card {
    background-color: var(--bg-gray);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.pricing-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.rank-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-price {
    margin: 2rem 0;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    vertical-align: super;
}

.pricing-price .amount {
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-price .period {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    color: var(--text-gray);
}

.annual-plans {
    text-align: center;
    margin-top: 4rem;
}

.annual-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.annual-grid {
    margin-top: 2rem;
}

.pricing-card-small {
    background-color: var(--bg-gray);
    border: 2px solid var(--primary-color);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.pricing-card-small:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.pricing-card-small.featured-small {
    border: 3px solid var(--primary-color);
}

.pricing-price-small .amount {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-price-small .period {
    color: var(--text-gray);
}

.savings {
    color: var(--primary-color);
    font-weight: bold;
    margin: 1rem 0;
}

/* ===== Benefits Section ===== */
.subscription-benefits {
    background-color: var(--bg-gray);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== FAQ Section ===== */
.faq {
    background-color: var(--bg-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid var(--primary-color);
    margin-bottom: 1rem;
    background-color: var(--bg-gray);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-dark);
}

.faq-question h3 {
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* ===== Testimonials Section ===== */
.testimonials {
    background-color: var(--bg-gray);
}

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

.testimonial-card {
    background-color: var(--bg-dark);
    border: 2px solid var(--primary-color);
    padding: 2rem;
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    margin: 1rem 0;
    font-style: italic;
}

.testimonial-author {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--bg-dark);
    border-top: 3px solid var(--primary-color);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    color: var(--text-dim);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100vw;
        max-width: 100%;
    }

    .container {
        width: 100%;
        overflow-x: hidden;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-dark);
        border-bottom: 2px solid var(--border-color);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        list-style: none;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        white-space: normal;
        border: none;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: rgba(0, 255, 0, 0.1);
        border: none;
        box-shadow: inset 4px 0 0 var(--primary-color);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 400px;
    }

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

    .video-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .controls-wrapper {
        flex-direction: column;
    }

    .filters select {
        min-width: 100%;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .annual-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    body, html {
        overflow-x: hidden;
        width: 100vw;
        max-width: 100%;
    }

    .container {
        width: 100%;
        overflow-x: hidden;
    }

    h1 {
        font-size: 2rem;
    }

    .logo span {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .pricing-price .amount {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* User Menu Styles */
.user-menu-btn {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.user-menu-btn:hover {
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.user-dropdown {
    position: fixed;
    top: 80px;
    right: 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid #00ff00;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 255, 0, 0.4), 0 0 20px rgba(0, 255, 0, 0.2);
    z-index: 1000;
    min-width: 220px;
    overflow: hidden;
}

.user-dropdown .dropdown-content {
    padding: 0;
}

.user-dropdown .dropdown-content p {
    display: block;
    color: #00ff00;
    font-weight: bold;
    padding: 1rem 1.2rem;
    margin: 0;
    background: rgba(0, 255, 0, 0.1);
    border-bottom: 2px solid #00ff00;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.user-dropdown .dropdown-content a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    padding: 0.9rem 1.2rem;
    transition: all 0.2s ease;
    margin: 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    font-size: 0.95rem;
}

.user-dropdown .dropdown-content a:last-child {
    border-bottom: none;
}

.user-dropdown .dropdown-content a:hover {
    background: rgba(0, 255, 0, 0.15);
    color: #00ff00;
    padding-left: 1.5rem;
    box-shadow: inset 4px 0 0 #00ff00;
}

.user-dropdown .dropdown-content a.active {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    box-shadow: inset 4px 0 0 #00ff00;
}
