/* Mobile-First CSS - Optimized for all devices */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --accent-bg: #1a1a1a;
    --card-bg: #151515;
    --neon-green: #00ff41;
    --neon-red: #ff0040;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #333333;
    --shadow-glow: 0 0 20px rgba(0, 255, 65, 0.3);
    --shadow-red-glow: 0 0 20px rgba(255, 0, 64, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--neon-green), #00cc33);
    --gradient-secondary: linear-gradient(135deg, var(--neon-red), #cc0033);
}

/* Sticky Navigation - Mobile First */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.sticky-nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 255, 65, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-logo-accent {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--neon-green);
    background: rgba(0, 255, 65, 0.1);
    border-color: var(--neon-green);
    transform: translateY(-2px);
}

.nav-link.nav-buy-btn {
    background: var(--gradient-primary);
    color: #000;
    font-weight: 700;
    border: none;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.nav-link.nav-buy-btn:hover {
    background: var(--gradient-secondary);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.4);
    transform: translateY(-2px) scale(1.05);
    color: #fff;
}

.nav-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* MOBILE-FIRST BASE STYLES */
body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
    padding-top: 60px; /* Space for fixed navigation */
}

/* Typography - Mobile First */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    word-wrap: break-word;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    word-wrap: break-word;
}

/* Container - Mobile First */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section - Mobile First */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, var(--primary-bg) 100%);
    overflow: hidden;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 1rem 0;
}

.logo {
    margin-bottom: 1.5rem;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    word-wrap: break-word;
}

.logo-accent {
    color: var(--neon-green);
    text-shadow: var(--shadow-glow);
}

.hero-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 1.5rem 0;
    text-shadow: none;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
}

.badge-item {
    padding: 0.6rem 1.2rem;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    width: auto;
    max-width: 90%;
    word-wrap: break-word;
}

.cta-section {
    margin-top: 2rem;
    width: 100%;
}

.cta-button {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-glow);
    width: auto;
    max-width: 90%;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 255, 65, 0.4);
}

/* Background Effects */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: particle-float 6s infinite linear;
}

.particles::before {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.particles::after {
    top: 80%;
    right: 15%;
    animation-delay: -4s;
}

/* Discord Floating Icon - Mobile First */
.discord-floating-icon {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 1000;
}

.discord-icon-container {
    position: relative;
    width: 50px;
    height: 50px;
    background: #5865f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.discord-icon-container:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6);
}

.discord-icon-container svg {
    color: white;
    z-index: 2;
    width: 24px;
    height: 24px;
}

/* Discord Server Card - Mobile First */
.discord-server-card {
    padding: 2rem 0;
    background: var(--secondary-bg);
    width: 100%;
    overflow: hidden;
}

.server-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0;
    width: 100%;
}

.server-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(0, 0, 0, 0.2));
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.server-icon {
    position: relative;
    margin: 0;
}

.guild-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #000;
    font-family: 'Orbitron', monospace;
}

.online-indicator {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    background: #00ff41;
    border: 2px solid var(--card-bg);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.server-info {
    flex: none;
    text-align: center;
}

.server-info h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.server-info p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.join-server-btn {
    background: #5865f2;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.join-server-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.server-channels {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.channels-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1.25rem;
    width: 100%;
}

.channel-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.channel-list {
    width: 100%;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    width: 100%;
    min-height: 40px;
    overflow: hidden;
}

.channel-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.channel-item.active {
    background: rgba(0, 255, 65, 0.1);
    color: var(--neon-green);
}

.channel-icon {
    font-size: 1.1rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.channel-item.active .channel-icon,
.voice-channel.active .channel-icon {
    color: var(--neon-green);
}

.unread-count {
    margin-left: auto;
    background: var(--neon-red);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.voice-users {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.user-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.user-avatars {
    display: flex;
    align-items: center;
    margin-left: -5px;
}

.user-avatar {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: #000;
    border: 2px solid var(--card-bg);
    margin-left: -3px;
    flex-shrink: 0;
}

.user-avatar.more {
    background: var(--text-muted);
    color: white;
    font-size: 0.5rem;
}

/* Features Section - Mobile First */
.features {
    padding: 3rem 0;
    background: var(--secondary-bg);
    width: 100%;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 0.5rem;
}

.section-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.feature-category {
    margin-bottom: 3rem;
    width: 100%;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--neon-green);
    padding-left: 1rem;
    word-wrap: break-word;
    flex-wrap: wrap;
}

.category-title .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Features Grid - Mobile First */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.feature-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: auto;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-glow);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    word-wrap: break-word;
    hyphens: auto;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.special-feature {
    background: linear-gradient(135deg, rgba(255, 0, 64, 0.1), rgba(0, 255, 65, 0.1));
    border: 2px solid var(--neon-red);
    transform: none;
}

.special-feature h3 {
    color: var(--neon-red);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-text {
    font-weight: 600;
    color: var(--text-primary) !important;
}

.special-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(12deg);
    animation: pulse 2s infinite;
}

/* Pricing Section - Mobile First */
.pricing {
    padding: 3rem 0;
    background: var(--primary-bg);
    width: 100%;
    overflow: hidden;
}

/* Pricing Grid - Mobile First */
.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    width: 100%;
    transform: none;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--neon-green);
}

.popular {
    border: 2px solid var(--neon-green);
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), var(--card-bg));
    transform: none;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.card-price {
    margin-bottom: 1rem;
}

.price-usd {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    display: block;
}

.price-try {
    font-size: 1.3rem;
    color: var(--neon-green);
    font-weight: 600;
}

.card-badge {
    background: rgba(0, 255, 65, 0.2);
    color: var(--neon-green);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.card-features {
    margin: 1.5rem 0;
    text-align: left;
}

.feature-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-item:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    color: #000;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pricing-btn.primary {
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-red-glow);
}

/* Support Info Section - Mobile First */
.support-info {
    padding: 3rem 0;
    background: var(--secondary-bg);
    width: 100%;
    overflow: hidden;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.info-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    width: 100%;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-glow);
}

.info-card.highlight {
    border: 2px solid var(--neon-green);
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), var(--card-bg));
}

.info-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
}

.info-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Footer - Mobile First */
.footer {
    background: var(--primary-bg);
    padding: 2rem 0 1rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-section h3 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--neon-green);
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* GPU-Accelerated High Performance Animations */
@keyframes pulse-optimized {
    0%, 100% { 
        opacity: 1;
        transform: translateZ(0);
    }
    50% { 
        opacity: 0.7;
        transform: translateZ(0);
    }
}

@keyframes particle-float {
    0% { 
        transform: translate3d(0, 0, 0) rotate(0deg); 
        opacity: 0; 
    }
    10% { 
        opacity: 1; 
    }
    90% { 
        opacity: 1; 
    }
    100% { 
        transform: translate3d(0, -100vh, 0) rotate(360deg); 
        opacity: 0; 
    }
}

@keyframes glow-optimized {
    0%, 100% { 
        box-shadow: var(--shadow-glow);
        transform: translateZ(0);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
        transform: translateZ(0);
    }
}

@keyframes slideUp-optimized {
    from { 
        transform: translate3d(0, 30px, 0);
        opacity: 0; 
    }
    to { 
        transform: translate3d(0, 0, 0);
        opacity: 1; 
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse-discord-optimized {
    0% { 
        transform: scale3d(1, 1, 1);
    }
    50% { 
        transform: scale3d(1.05, 1.05, 1);
    }
    100% { 
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse-ring-optimized {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
    100% {
        transform: scale3d(1.5, 1.5, 1);
        opacity: 0;
    }
}

/* Optimized animation classes */
.pulse-animation {
    animation: pulse-optimized 2s ease-in-out infinite;
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.pulse-text {
    animation: pulse-optimized 3s ease-in-out infinite;
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.glow-effect {
    animation: glow-optimized 2s ease-in-out infinite;
    will-change: box-shadow, transform;
    backface-visibility: hidden;
}

.fade-in {
    animation: fadeIn 1s ease-out;
    will-change: opacity;
}

.slide-up {
    animation: slideUp-optimized 0.8s ease-out;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.pulse-discord {
    animation: pulse-discord-optimized 2s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.discord-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #5865f2;
    border-radius: 50%;
    animation: pulse-ring-optimized 2s ease-in-out infinite;
    will-change: transform, opacity;
    backface-visibility: hidden;
    pointer-events: none;
}

/* Performance optimizations for low-end devices */
@media (max-width: 480px) {
    .pulse-animation,
    .pulse-text {
        animation-duration: 3s; /* Slower on mobile to reduce CPU load */
    }
    
    .glow-effect {
        animation: none; /* Disable glow on very small screens for performance */
        box-shadow: var(--shadow-glow);
    }
}

/* Battery saving mode */
@media (prefers-reduced-motion: reduce) {
    .pulse-animation,
    .pulse-text,
    .glow-effect,
    .pulse-discord,
    .discord-pulse-ring {
        animation: none !important;
    }
    
    .glow-effect {
        box-shadow: var(--shadow-glow);
    }
}

/* Scroll Animations */
.fade-in, .slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.fade-in.visible, .slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc33;
}

/* Mobile Navigation Menu */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1rem;
        border-top: 1px solid var(--border-color);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
    
    .nav-menu.active {
        top: 60px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem;
        font-size: 1rem;
        justify-content: center;
        width: 100%;
    }
}

/* TABLET STYLES - 768px and up */
@media screen and (min-width: 768px) {
    .container {
        padding: 0 2rem;
        max-width: 1200px;
    }
    
    .sticky-nav {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .nav-logo-text {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    body {
        padding-top: 80px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .logo-text {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0;
    }
    
    .trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .badge-item {
        font-size: 1rem;
        max-width: none;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 1.2rem 2.5rem;
        max-width: none;
    }
    
    .discord-floating-icon {
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
        right: 25px;
    }
    
    .discord-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .discord-icon-container svg {
        width: 28px;
        height: 28px;
    }
    
    .server-header {
        flex-direction: row;
        text-align: left;
        padding: 2rem;
    }
    
    .server-icon {
        margin-right: 1.5rem;
    }
    
    .guild-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .online-indicator {
        width: 20px;
        height: 20px;
        border: 3px solid var(--card-bg);
    }
    
    .server-info {
        flex: 1;
        text-align: left;
    }
    
    .server-info h3 {
        font-size: 1.8rem;
    }
    
    .server-info p {
        font-size: 1.1rem;
    }
    
    .server-channels {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        padding: 2rem;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .card-icon {
        font-size: 3rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
    
    .category-title {
        font-size: 1.8rem;
        gap: 1rem;
        border-left: 4px solid var(--neon-green);
    }
    
    .category-title .icon {
        font-size: 2rem;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2.5rem;
    }
    
    .popular {
        transform: scale(1.05);
    }
    
    .special-feature {
        transform: scale(1.05);
    }
    
    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
    }
}

/* DESKTOP STYLES - 1024px and up */
@media screen and (min-width: 1024px) {
    .container {
        max-width: 1400px;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .logo-text {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .trust-badges {
        gap: 2rem;
    }
    
    .cta-button {
        font-size: 1.3rem;
        padding: 1.5rem 3rem;
        border-radius: 50px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 3rem auto 0;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .category-title .icon {
        font-size: 2.5rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* LARGE DESKTOP STYLES - 1440px and up */
@media screen and (min-width: 1440px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }
    
    .pricing-grid {
        gap: 3rem;
    }
    
    .grid-overlay {
        background-size: 50px 50px;
    }
}

/* HIGH DPI DISPLAYS */
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi) {
    .grid-overlay {
        background-size: 25px 25px;
    }
    
    .particles::before,
    .particles::after {
        width: 1px;
        height: 1px;
    }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .particles::before,
    .particles::after {
        animation: none;
    }
    
    .pulse-animation,
    .pulse-text,
    .glow-effect,
    .pulse-discord {
        animation: none;
    }
}

/* PRINT STYLES */
@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .hero-bg-effects,
    .particles,
    .discord-floating-icon {
        display: none !important;
    }
    
    .container {
        max-width: none !important;
        padding: 0 !important;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* USP Section - Mobile First */
.usp-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.usp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 0, 64, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.usp-card {
    background: linear-gradient(135deg, rgba(255, 0, 64, 0.1), rgba(0, 0, 0, 0.8));
    border: 2px solid var(--neon-red);
    border-radius: 25px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 40px rgba(255, 0, 64, 0.3),
        inset 0 0 30px rgba(255, 0, 64, 0.05);
    animation: usp-pulse 3s ease-in-out infinite;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 0, 64, 0.1) 25%,
        rgba(255, 0, 64, 0.2) 50%,
        rgba(255, 0, 64, 0.1) 75%,
        transparent 100%
    );
    animation: usp-rotate 8s linear infinite;
    pointer-events: none;
}

.usp-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 5, 5, 0.95));
    border-radius: 23px;
    z-index: 1;
}

.usp-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.sound-waves {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave {
    position: absolute;
    border: 2px solid var(--neon-red);
    border-radius: 50%;
    animation: wave-pulse 2s ease-in-out infinite;
}

.wave-1 {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.wave-2 {
    width: 80px;
    height: 80px;
    animation-delay: 0.5s;
}

.wave-3 {
    width: 100px;
    height: 100px;
    animation-delay: 1s;
}

.headset-icon {
    font-size: 3.5rem;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 0 20px rgba(255, 0, 64, 0.8));
}

.usp-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.exclusive-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: badge-glow 2s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(255, 0, 64, 0.5);
}

.usp-title {
    font-size: 2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: var(--neon-red);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(255, 0, 64, 0.8),
        0 0 20px rgba(255, 0, 64, 0.6),
        0 0 30px rgba(255, 0, 64, 0.4);
    animation: title-glow 3s ease-in-out infinite;
}

.usp-description {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.usp-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 0, 64, 0.05);
    border: 1px solid rgba(255, 0, 64, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 0, 64, 0.1);
    border-color: var(--neon-red);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 0, 64, 0.3);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 0, 64, 0.6));
}

.benefit-item span:last-child {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.usp-button {
    background: var(--gradient-secondary);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 30px rgba(255, 0, 64, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.3);
    animation: button-pulse 2s ease-in-out infinite;
}

.usp-button::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: left 0.5s;
}

.usp-button:hover::before {
    left: 100%;
}

.usp-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 40px rgba(255, 0, 64, 0.7),
        0 15px 30px rgba(0, 0, 0, 0.4);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-arrow {
    position: relative;
    z-index: 2;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.usp-button:hover .button-arrow {
    transform: translateX(5px);
}

/* USP Animations */
@keyframes usp-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 40px rgba(255, 0, 64, 0.3),
            inset 0 0 30px rgba(255, 0, 64, 0.05);
    }
    50% {
        transform: scale(1.01);
        box-shadow: 
            0 0 50px rgba(255, 0, 64, 0.4),
            inset 0 0 40px rgba(255, 0, 64, 0.08);
    }
}

@keyframes usp-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes wave-pulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 0, 64, 0.5);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 0, 64, 0.8);
    }
}

@keyframes title-glow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 0, 64, 0.8),
            0 0 20px rgba(255, 0, 64, 0.6),
            0 0 30px rgba(255, 0, 64, 0.4);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 0, 64, 1),
            0 0 30px rgba(255, 0, 64, 0.8),
            0 0 45px rgba(255, 0, 64, 0.6);
    }
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(255, 0, 64, 0.5),
            0 10px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(255, 0, 64, 0.7),
            0 12px 25px rgba(0, 0, 0, 0.4);
    }
}

/* TABLET STYLES - 768px and up */
@media screen and (min-width: 768px) {
    .usp-card {
        padding: 4rem 3rem;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 3rem;
    }
    
    .usp-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .sound-waves {
        width: 150px;
        height: 150px;
    }
    
    .wave-1 { width: 80px; height: 80px; }
    .wave-2 { width: 110px; height: 110px; }
    .wave-3 { width: 140px; height: 140px; }
    
    .headset-icon {
        font-size: 4.5rem;
    }
    
    .usp-content {
        text-align: left;
        flex: 1;
    }
    
    .usp-title {
        font-size: 2.5rem;
    }
    
    .usp-description {
        font-size: 1.3rem;
    }
    
    .usp-benefits {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .benefit-item {
        flex: 1;
        min-width: 200px;
        margin: 0.5rem;
    }
}

/* DESKTOP STYLES - 1024px and up */
@media screen and (min-width: 1024px) {
    .usp-section {
        padding: 5rem 0;
    }
    
    .usp-card {
        padding: 5rem 4rem;
        gap: 4rem;
    }
    
    .sound-waves {
        width: 180px;
        height: 180px;
    }
    
    .wave-1 { width: 100px; height: 100px; }
    .wave-2 { width: 140px; height: 140px; }
    .wave-3 { width: 180px; height: 180px; }
    
    .headset-icon {
        font-size: 5.5rem;
    }
    
    .usp-title {
        font-size: 3rem;
    }
    
    .usp-description {
        font-size: 1.4rem;
    }
    
    .usp-button {
        font-size: 1.3rem;
        padding: 1.75rem 3.5rem;
    }
    
    .benefit-item {
        flex: 0 1 calc(33.333% - 1rem);
    }
}

/* Performance optimizations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .usp-card,
    .exclusive-badge,
    .usp-title,
    .usp-button {
        animation: none;
    }
    
    .usp-card::before {
        animation: none;
        display: none;
    }
    
    .wave {
        animation: none;
        opacity: 0.3;
    }
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .usp-section {
        padding: 3rem 0;
    }
    
    .usp-card {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }
    
    .usp-title {
        font-size: 1.5rem;
    }
    
    .usp-description {
        font-size: 1rem;
    }
    
    .usp-benefits {
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
    }
    
    .benefit-item:hover {
        transform: none; /* Disable slide effect on mobile */
    }
    
    .usp-button {
        font-size: 1rem;
        padding: 1.25rem 2.5rem;
    }
    
    .sound-waves {
        width: 100px;
        height: 100px;
    }
    
    .wave-1 { width: 50px; height: 50px; }
    .wave-2 { width: 70px; height: 70px; }
    .wave-3 { width: 90px; height: 90px; }
    
    .headset-icon {
        font-size: 2.5rem;
    }
}

/* Anti-Ban Guarantee Section - Mobile First */
.anti-ban-guarantee {
    padding: 3rem 0;
    background: var(--primary-bg);
    width: 100%;
    overflow: hidden;
}

.guarantee-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 0.5rem;
}

.guarantee-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.guarantee-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.guarantee-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.guarantee-item {
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.shield-icon {
    width: 120px;
    height: 140px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-outer {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--neon-green), #00cc33);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
}

.shield-outer.spoofer {
    background: linear-gradient(145deg, #ff6b35, #f7931e);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
}

.shield-outer.reporter {
    background: linear-gradient(145deg, #ff0040, #cc0033);
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.4);
}

.shield-inner {
    width: 85%;
    height: 85%;
    background: var(--card-bg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.shield-text {
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 1px;
}

.guarantee-item h3 {
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.guarantee-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Shake Animation */
.shake-animation {
    animation: shake-intense 3s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.shake-animation.delay-1 {
    animation-delay: 1s;
}

.shake-animation.delay-2 {
    animation-delay: 2s;
}

@keyframes shake-intense {
    0%, 90%, 100% {
        transform: translate3d(0, 0, 0);
    }
    1%, 3%, 5%, 7%, 9% {
        transform: translate3d(-2px, 0, 0);
    }
    2%, 4%, 6%, 8% {
        transform: translate3d(2px, 0, 0);
    }
    10%, 12%, 14%, 16% {
        transform: translate3d(-1px, -1px, 0);
    }
    11%, 13%, 15% {
        transform: translate3d(1px, 1px, 0);
    }
}

/* Testimonials Section - Mobile First */
.testimonials {
    padding: 3rem 0;
    background: var(--secondary-bg);
    width: 100%;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 0.5rem;
}

.testimonials-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.testimonials-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    animation: testimonial-scroll 20s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.testimonial-card {
    min-width: 320px;
    margin-right: 2rem;
    flex-shrink: 0;
}

.testimonial-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #000;
    font-family: 'Orbitron', monospace;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--neon-green);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonial Scroll Animation */
@keyframes testimonial-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Pause animation on hover */
.testimonials-slider:hover .testimonial-track {
    animation-play-state: paused;
}

/* TABLET STYLES - 768px and up */
@media screen and (min-width: 768px) {
    .guarantee-icons {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
        flex-wrap: wrap;
    }
    
    .guarantee-item {
        max-width: none;
        flex: 1;
        min-width: 250px;
    }
    
    .shield-icon {
        width: 140px;
        height: 160px;
    }
    
    .shield-text {
        font-size: 1rem;
    }
    
    .guarantee-item h3 {
        font-size: 1.4rem;
    }
    
    .guarantee-item p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        min-width: 400px;
    }
    
    .testimonial-content {
        padding: 2.5rem;
    }
}

/* DESKTOP STYLES - 1024px and up */
@media screen and (min-width: 1024px) {
    .guarantee-icons {
        gap: 6rem;
        flex-wrap: nowrap;
    }
    
    .guarantee-item {
        max-width: 350px;
    }
    
    .shield-icon {
        width: 160px;
        height: 180px;
    }
    
    .shield-text {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        min-width: 450px;
    }
    
    .testimonial-track {
        animation-duration: 25s;
    }
}

/* Performance optimizations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .shake-animation {
        animation: none;
    }
    
    .testimonial-track {
        animation: none;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .testimonial-card {
        min-width: 300px;
        margin-right: 0;
    }
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .shake-animation {
        animation-duration: 4s; /* Slower on mobile for battery */
    }
    
    .testimonial-card {
        min-width: 280px;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
}

/* Media Gallery Section - Mobile First */
.media-gallery {
    padding: 4rem 0;
    background: var(--accent-bg);
    width: 100%;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 0.5rem;
}

.gallery-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.gallery-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.media-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

/* Video Player - Mobile First */
.video-showcase {
    width: 100%;
}

.video-player {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-player:hover {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

/* YouTube iframe responsive container */
.youtube-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px 10px 0 0;
    background: transparent;
}

/* Responsive YouTube heights */
@media screen and (min-width: 768px) {
    .youtube-container {
        height: 250px;
    }
}

@media screen and (min-width: 1024px) {
    .youtube-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .youtube-container {
        height: 180px;
    }
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    animation: video-pulse 2s ease-in-out infinite;
    z-index: 2;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.7);
}

.play-icon {
    color: #000;
    font-size: 2rem;
    margin-left: 5px;
    font-weight: 900;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: var(--text-primary);
}

.video-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--neon-green);
}

.video-duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Screenshots Slider - Mobile First */
.screenshots-slider {
    width: 100%;
}

.slider-header {
    text-align: center;
    margin-bottom: 2rem;
}

.slider-header h3 {
    color: var(--neon-green);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    animation: slider-scroll 15s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.screenshot-card {
    min-width: 280px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.screenshot-card:hover {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.screenshot-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.screenshot-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0, 255, 65, 0.03) 10px,
            rgba(0, 255, 65, 0.03) 20px
        );
    pointer-events: none;
}

.placeholder-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.5));
}

.placeholder-text {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Orbitron', monospace;
}

.placeholder-text small {
    display: block;
    font-size: 0.8rem;
    color: var(--neon-green);
    margin-top: 0.5rem;
    font-weight: 400;
}

.screenshot-info {
    padding: 1.5rem;
}

.screenshot-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-family: 'Orbitron', monospace;
}

.screenshot-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Video and Slider Animations */
@keyframes video-pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 65, 0.7);
    }
}

@keyframes slider-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Pause slider animation on hover */
.screenshots-slider:hover .slider-track {
    animation-play-state: paused;
}

/* TABLET STYLES - 768px and up */
@media screen and (min-width: 768px) {
    .media-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }
    
    .video-showcase {
        flex: 1;
    }
    
    .video-thumbnail {
        height: 250px;
    }
    
    .play-button {
        width: 100px;
        height: 100px;
    }
    
    .play-icon {
        font-size: 2.5rem;
    }
    
    .screenshots-slider {
        flex: 1;
    }
    
    .screenshot-card {
        min-width: 320px;
    }
    
    .screenshot-placeholder {
        height: 200px;
    }
    
    .placeholder-icon {
        font-size: 3.5rem;
    }
    
    .slider-track {
        animation-duration: 18s;
    }
}

/* DESKTOP STYLES - 1024px and up */
@media screen and (min-width: 1024px) {
    .media-gallery {
        padding: 5rem 0;
    }
    
    .video-thumbnail {
        height: 300px;
    }
    
    .play-button {
        width: 120px;
        height: 120px;
    }
    
    .play-icon {
        font-size: 3rem;
    }
    
    .video-title {
        font-size: 1.4rem;
    }
    
    .video-duration {
        font-size: 1rem;
    }
    
    .screenshot-card {
        min-width: 350px;
    }
    
    .screenshot-placeholder {
        height: 220px;
    }
    
    .placeholder-icon {
        font-size: 4rem;
    }
    
    .placeholder-text {
        font-size: 1.1rem;
    }
    
    .slider-track {
        animation-duration: 20s;
    }
    
    .slider-btn {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* Performance optimizations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .video-pulse,
    .slider-track {
        animation: none;
    }
    
    .slider-track {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .screenshot-card {
        min-width: 300px;
    }
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .media-gallery {
        padding: 3rem 0;
    }
    
    .media-container {
        gap: 2rem;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-icon {
        font-size: 1.8rem;
    }
    
    .video-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .video-title {
        font-size: 1rem;
    }
    
    .video-duration {
        font-size: 0.8rem;
    }
    
    .screenshot-card {
        min-width: 260px;
    }
    
    .screenshot-placeholder {
        height: 160px;
    }
    
    .placeholder-icon {
        font-size: 2.5rem;
    }
    
    .placeholder-text {
        font-size: 0.9rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .slider-track {
        animation-duration: 12s;
    }
}

/* FORCE NO HORIZONTAL SCROLL */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

img, video, iframe, embed, object {
    max-width: 100% !important;
    height: auto !important;
}
