* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-card: #232328;
    --bg-card-hover: #2d2d35;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #6b6b6b;
    --accent: #6c5ce7;
    --accent-hover: #7d6ff0;
    --accent-light: #a29bfe;
    --gold: #ffd700;
    --success: #00d26a;
    --pink: #ff6b9d;
    --cyan: #00d4ff;
    --gradient-1: linear-gradient(135deg, #6c5ce7, #a29bfe);
    --gradient-2: linear-gradient(135deg, #ff6b9d, #ffa502);
    --gradient-3: linear-gradient(135deg, #00d4ff, #6c5ce7);
    --shadow: 0 10px 40px rgba(108, 92, 231, 0.2);
    --shadow-hover: 0 20px 60px rgba(108, 92, 231, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

[data-theme="light"] {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f5;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-muted: #8888aa;
    --shadow: 0 10px 40px rgba(108, 92, 231, 0.1);
    --shadow-hover: 0 20px 60px rgba(108, 92, 231, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slowGlow {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Navigation */
.navbar {
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.9);
}

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

.logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    display: inline-block;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Theme Switcher */
.theme-switch {
    width: 48px;
    height: 26px;
    background: var(--bg-card);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    flex-shrink: 0;
}

.theme-switch:hover {
    border-color: var(--accent);
}

.theme-switch::before {
    content: '🌙';
    position: absolute;
    left: 3px;
    top: 2px;
    width: 20px;
    height: 20px;
    background: var(--bg-primary);
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

[data-theme="light"] .theme-switch::before {
    content: '☀️';
    left: 23px;
}

/* Desktop - show in nav-buttons */
@media (min-width: 993px) {
    .mobile-controls {
        display: none;
    }
    .mobile-controls .theme-switch {
        display: none;
    }
    .nav-buttons .theme-switch {
        display: block !important;
    }
}

/* Mobile - show in mobile-controls */
@media (max-width: 992px) {
    .nav-buttons .theme-switch {
        display: none;
    }
    .mobile-controls .theme-switch {
        display: block;
        width: 42px;
        height: 24px;
        border-radius: 20px;
    }
    .mobile-controls .theme-switch::before {
        width: 18px;
        height: 18px;
        left: 2px;
        top: 1px;
    }
    [data-theme="light"] .mobile-controls .theme-switch::before {
        left: 20px;
    }
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-block;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: var(--radius);
}

.btn-gold {
    background: var(--gradient-2);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-admin {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-pink {
    background: var(--gradient-2);
    color: white;
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    text-align: center;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(108, 92, 231, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 107, 157, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236c5ce7' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 90px;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 24px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease forwards, slowGlow 3s ease-in-out infinite;
    text-shadow: 0 0 60px rgba(108, 92, 231, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

/* Floating Elements */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.3), transparent);
    top: 10%;
    left: -10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.2), transparent);
    top: 60%;
    right: -5%;
    animation: float 6s ease-in-out infinite 1s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent);
    bottom: 20%;
    left: 20%;
    animation: float 7s ease-in-out infinite 0.5s;
}

/* Features Section */
.features, .additional-features {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .feature-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.premium {
    border-color: rgba(255, 215, 0, 0.2);
}

.feature-card.premium:hover {
    border-color: var(--gold);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 2s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 2.5s; }

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

.center-button {
    text-align: center;
    margin-top: 60px;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    text-align: center;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(108, 92, 231, 0.1) 50%, transparent 100%);
    position: relative;
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    color: var(--text-secondary);
    font-size: 20px;
    margin-bottom: 48px;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-secondary);
}

[data-theme="light"] footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Premium Page */
.page-header {
    padding: 180px 0 80px;
    text-align: center;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(108, 92, 231, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 107, 157, 0.15) 0%, transparent 50%);
    position: relative;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease forwards;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* Pricing Table */
.pricing-section {
    padding: 80px 0;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 60px;
    border-radius: var(--radius);
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .pricing-table th,
[data-theme="light"] .pricing-table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    font-size: 15px;
}

.pricing-table th:first-child {
    border-radius: var(--radius) 0 0 0;
}

.pricing-table th:last-child {
    border-radius: 0 var(--radius) 0 0;
}

.pricing-table th.premium-col {
    background: var(--gradient-1);
    color: white;
}

.pricing-table td {
    background: var(--bg-card);
    font-size: 14px;
}

.pricing-table tr:last-child td:first-child {
    border-radius: 0 0 0 var(--radius);
}

.pricing-table tr:last-child td:last-child {
    border-radius: 0 0 var(--radius) 0;
}

.check {
    color: var(--success);
    font-size: 18px;
    font-weight: bold;
}

.cross {
    color: var(--text-muted);
    font-size: 18px;
}

/* Purchase Cards */
.purchase-section {
    padding: 60px 0 120px;
}

.purchase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.purchase-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

[data-theme="light"] .purchase-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.purchase-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.purchase-card.featured {
    border-color: var(--gold);
    transform: scale(1.02);
}

.purchase-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.purchase-card.featured::before {
    content: 'Best Value';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.purchase-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 700;
}

.purchase-card .duration {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.purchase-card .price-box {
    margin-bottom: 24px;
}

.purchase-card .original-price {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.purchase-card .discount-price {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purchase-card .price {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.purchase-card .price span {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}

.purchase-card .btn {
    width: 100%;
    padding: 14px;
}

/* Commands Page */
.commands-section {
    padding: 80px 0;
}

.command-category {
    margin-bottom: 50px;
}

.command-category h2 {
    font-size: 30px;
    margin-bottom: 28px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.command-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.command-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

[data-theme="light"] .command-item {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.command-item:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.command-name {
    font-family: 'Fira Code', monospace;
    font-weight: 600;
    color: var(--accent);
    font-size: 15px;
}

.command-desc {
    color: var(--text-secondary);
    font-size: 13px;
}

.premium-badge {
    background: var(--gradient-2);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

/* Policy & Terms Pages */
.policy-section, .terms-section {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.policy-section h1, .terms-section h1 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-section h2, .terms-section h2 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: var(--accent);
}

.policy-section p, .terms-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.policy-section ul, .terms-section ul {
    color: var(--text-secondary);
    margin-left: 20px;
    margin-bottom: 16px;
}

.policy-section li, .terms-section li {
    margin-bottom: 10px;
}

.policy-section a, .terms-section a {
    color: var(--accent);
    text-decoration: none;
}

.policy-section a:hover, .terms-section a:hover {
    text-decoration: underline;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-btn:hover {
    background: var(--accent);
}

.mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px auto;
    transition: var(--transition);
}

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

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

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

.mobile-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 16px 20px;
        gap: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 8px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 56px;
        animation: fadeInUp 1s ease forwards, slowGlow 3s ease-in-out infinite;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 10px 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 10px;
    }
    
    .hero {
        padding: 160px 0 80px;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-table {
        font-size: 12px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
    }
    
    .purchase-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .cta h2 {
        font-size: 32px;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .nav-buttons.active {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 20px;
        background: var(--bg-secondary);
        border-radius: 12px;
        margin-top: 10px;
    }
    
    .nav-buttons.active .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .pricing-table {
        display: block;
        overflow-x: auto;
    }
    
    .purchase-card .price {
        font-size: 36px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Free Claim Modal */
.claim-btn {
    background: var(--gradient-2);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal h2 {
    font-size: 28px;
    margin-bottom: 8px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 15px;
}

.modal input {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.modal input:focus {
    outline: none;
    border-color: var(--accent);
}

.modal input::placeholder {
    color: var(--text-muted);
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal .btn-add-bot {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--accent);
}

.modal .btn-add-bot:hover {
    background: var(--accent);
}

.modal .btn-submit {
    background: var(--gradient-1);
    color: white;
}

.modal .btn-submit:hover {
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-message {
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 500;
}

.modal-message.success {
    background: rgba(0, 210, 106, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

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

.modal-content {
    position: relative;
}

/* Bot Status Widget */
.bot-status {
    padding: 30px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.status-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.status-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: var(--success);
    box-shadow: 0 0 15px var(--success);
}

.status-indicator.offline {
    background: var(--danger);
    box-shadow: 0 0 15px var(--danger);
}

.status-indicator.maintenance {
    background: #ffa502;
    box-shadow: 0 0 15px #ffa502;
}

.status-indicator.updating {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.status-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--success);
    text-transform: capitalize;
}

.status-text.offline {
    color: var(--danger);
}

.status-text.maintenance {
    color: #ffa502;
}

.status-text.updating {
    color: var(--accent);
}

.status-stats {
    display: flex;
    gap: 40px;
    margin-left: 40px;
    padding-left: 40px;
    border-left: 1px solid var(--border);
}

.status-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status-stats .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.status-stats .stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Premium Comparison Cards */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.compare-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    border: 2px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.compare-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}

.compare-card.premium {
    border-color: #6c5ce7;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), transparent);
}

.compare-card.branding {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), transparent);
}

.compare-card.branding-full {
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
}

.compare-card.branding-full .discount-badge {
    background: linear-gradient(135deg, #00d4ff, #6c5ce7);
    color: white;
}

.compare-card.basic {
    opacity: 0.8;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.plan-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .currency {
    font-size: 24px;
    color: var(--text-secondary);
}

.price .amount {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price .period {
    font-size: 14px;
    color: var(--text-muted);
}

.discount-badge {
    display: inline-block;
    background: var(--success);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

.compare-card.premium .discount-badge {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
}

.compare-card.branding .discount-badge {
    background: linear-gradient(135deg, #ff6b6b, #ffa502);
    color: white;
}

.compare-card.branding-lifetime .discount-badge {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list .feature {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
}

.feature-list .feature:last-child {
    border-bottom: none;
}

.feature-list .feature .icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: rgba(0, 210, 106, 0.2);
    color: var(--success);
}

.feature-list .feature.deny .icon {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.feature-list .feature.deny {
    color: var(--text-muted);
}

.upgrade-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}

/* Currency Converter */
.currency-converter {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}

.currency-converter h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.converter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.converter-box select {
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
}

.converter-arrow {
    font-size: 24px;
    color: var(--accent);
}

.btn-convert {
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-convert:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.conversion-result {
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 12px;
    font-size: 18px;
    color: var(--text-primary);
}

/* Currency Switcher */
.currency-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 16px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.currency-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.currency-btn {
    padding: 10px 20px;
    border: 2px solid var(--border);
    border-radius: 25px;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.currency-btn:hover {
    border-color: var(--accent);
}

.currency-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* Loading Screen */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    animation: fadeIn 0.6s ease-out;
}

.loader-icon img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.5);
}

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

.loader-text {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: typewriter 1s steps(4) forwards;
}

.loader-text span {
    display: inline-block;
    opacity: 0;
    animation: letterAppear 0.1s forwards;
}

@keyframes typewriter {
    width: 0;
}

@keyframes letterAppear {
    to { opacity: 1; }
}

/* Light theme loader */
[data-theme="light"] #loader {
    background: linear-gradient(135deg, #f8f9fa 0%, #e0e0f0 50%, #f8f9fa 100%);
}