/* Reset and Base */

/* Product Card Title Styles */
.card-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
    word-wrap: break-word;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #0f0a1a;
    --accent-color: #8b5cf6;
    --amethyst-primary: #6d28d9;
    --amethyst-secondary: #7c3aed;
    --amethyst-light: #a78bfa;
    --amethyst-glow: #c4b5fd;
    --text-primary: #ffffff;
    --text-secondary: #e5e7eb;
    --text-muted: #9ca3af;
    --border-color: #374151;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --gradient-bg: linear-gradient(135deg, #0f0a1a 0%, #1a1035 25%, #2d1b69 50%, #4c1d95 75%, #6d28d9 100%);
    --accent-gradient: linear-gradient(135deg, #6d28d9 0%, #7c3aed 35%, #8b5cf6 70%, #a78bfa 100%);
    --amethyst-radial: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    --shadow-soft: 0 8px 32px rgba(139, 92, 246, 0.15);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    --border-glow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* Performance optimizations */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-bg);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--amethyst-radial);
    pointer-events: none;
    z-index: -1;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--amethyst-glow);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    text-shadow: var(--shadow-glow);
}

.loading-bar {
    width: 300px;
    height: 2px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 1px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.loading-progress {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    animation: loadingProgress 2s ease 1.2s forwards;
}

.loading-continue {
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 3.5s forwards;
}

.continue-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.continue-button {
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    padding: 0.8rem 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.continue-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.continue-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

/* Main Content */
.main-content {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.main-content.visible {
    opacity: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 10, 26, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

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

.nav-logo .logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--amethyst-glow);
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-link.active {
    color: var(--amethyst-glow);
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--text-primary), #cccccc);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.nav-toggle span {
    width: 20px;
    height: 1px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 10, 26, 0.9) 0%, rgba(26, 16, 53, 0.95) 30%, rgba(45, 27, 105, 0.98) 60%, rgba(76, 29, 149, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(196, 181, 253, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(20, 20, 20, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.2rem;
    font-weight: 200;
    letter-spacing: -1px;
    margin-bottom: 0.8rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 1.2s ease 0.3s forwards;
    line-height: 1.1;
    text-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, var(--amethyst-glow), var(--text-primary), var(--amethyst-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-accent {
    color: var(--text-muted);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--amethyst-light);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 1.2s ease 0.6s forwards;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.hero-description {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 1.2s ease 0.9s forwards;
}

.hero-description p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.hero-quote {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 1.2s ease 1.5s forwards;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-glow), 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.quote-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    color: var(--amethyst-glow);
    margin-bottom: 0.3rem;
    font-style: italic;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 0.75rem;
    color: var(--amethyst-light);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.hero-cta {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1.2s ease 1.8s forwards;
}

.loading-music {
    margin-top: 2rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
}

.music-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}

/* Free VGC Bypass Section */
.free-bypass {
    padding: 4rem 0;
    background: linear-gradient(135deg, #111111 0%, #222222 50%, #333333 100%);
}

.bypass-content {
    max-width: 700px;
    margin: 0 auto;
}

.bypass-info {
    text-align: center;
    margin-bottom: 2rem;
}

/* Free Product Selection */
.free-product-selection {
    margin-bottom: 2rem;
}

.free-product-selection h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.free-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.free-product-option {
    position: relative;
}

.free-product-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.free-product-option label {
    display: block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.free-product-option input[type="radio"]:checked + label {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--success-color);
}

.free-product-option label:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
}

.product-title {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.product-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.bypass-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bypass-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bypass-steps {
    margin-bottom: 2rem;
}

.bypass-steps h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-secondary);
    transform: translateX(5px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: 50%;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.step-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border: none;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.step-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.6s ease;
}

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

.step-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.step-button:disabled {
    background: var(--border-color);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-icon {
    font-size: 1.1rem;
}

.step-status {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.status-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.status-icon.pending {
    color: var(--warning-color);
}

.status-icon.completed {
    color: var(--accent-color);
    animation: checkmark 0.5s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.bypass-progress {
    margin-top: 3rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    width: 0%;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.bypass-download {
    text-align: center;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--success-color), #00cc6a);
    color: var(--secondary-color);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.download-icon {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.download-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 400px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1.2s ease 1.5s forwards;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 100%;
}

.grid-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: pulse 3s ease-in-out infinite;
}

.grid-item:nth-child(1) { animation-delay: 0s; }
.grid-item:nth-child(2) { animation-delay: 0.5s; }
.grid-item:nth-child(3) { animation-delay: 1s; }
.grid-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

.scroll-line {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-primary), transparent);
    opacity: 0.3;
}

/* Section Dividers */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 0 0 4rem 0;
}

.section-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
    color: var(--amethyst-glow);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

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

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Product Category Cards */
.product-category-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.product-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-category-card:hover {
    border-color: var(--amethyst-secondary);
    background: rgba(139, 92, 246, 0.08);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), 0 12px 40px rgba(139, 92, 246, 0.3);
}

.product-category-card:hover::before {
    left: 100%;
}

.card-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.card-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 500;
    color: var(--amethyst-glow);
    margin-bottom: 0.4rem;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    line-height: 1.4;
}

.card-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-weight: 300;
    line-height: 1.4;
    min-height: 2.5rem;
}

.card-price-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.card-price-old {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.card-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 500;
    color: var(--amethyst-secondary);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.card-price-container .card-price {
    margin-bottom: 0;
}

.card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.card-status.available {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
}

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

.card-status.available .status-text {
    color: var(--success-color);
}

.status-type {
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.status-type.restart {
    background: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.5);
}

.status-type.no-restart {
    background: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.5);
}

.status-type.hwid {
    background: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.5);
}

.card-status.sale {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
}

.card-badge-sale {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    background: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.5);
    z-index: 10;
}

.card-status.unavailable {
    background: rgba(255, 68, 68, 0.15);
    color: var(--error-color);
}

.card-status.updating {
    background: rgba(255, 170, 0, 0.15);
    color: var(--warning-color);
}

.card-status.sale {
    background: rgba(168, 85, 247, 0.2);
    color: var(--success-color);
}

.card-image {
    padding: 0.5rem;
    text-align: center;
    margin-top: auto;
}

.product-preview-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Simple Vouches Section */
.simple-vouches {
    padding: 4rem 0;
}

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

.vouch-item {
    background: rgba(20, 10, 35, 0.95);
    border: 2px solid rgba(139, 92, 246, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.vouch-item:hover {
    transform: translateY(-3px);
    border-color: var(--amethyst-secondary);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.vouch-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vouch-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.vouch-info {
    flex: 1;
}

.vouch-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.vouch-product {
    font-size: 0.85rem;
    color: var(--amethyst-light);
    background: rgba(139, 92, 246, 0.15);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    display: inline-block;
}

.vouch-message {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.vouch-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    text-align: right;
}

.card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.card-hover span {
    color: var(--text-primary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-category-card:hover .card-hover {
    opacity: 1;
}

/* Product Modals */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

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

.modal-content {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.modal-body {
    padding: 2rem;
}

.modal-info {
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.info-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

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

.modal-description p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-features {
    margin-bottom: 1.5rem;
}

.modal-features .feature {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.modal-requirements {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.modal-requirements p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.modal-vouches {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.modal-vouches h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.vouch-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vouch-list .vouch-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.vouch-list .vouch-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-secondary);
}

.vouch-list .vouch-content {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-style: italic;
}

.vouch-list .vouch-author {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.modal-images {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.modal-images h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.modal-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.modal-image:hover {
    transform: scale(1.02);
    border-color: var(--text-secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Advanced Vouches Section */
.vouches {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(15, 10, 26, 0.95) 0%, rgba(26, 16, 53, 0.98) 50%, rgba(45, 27, 105, 1) 100%);
    position: relative;
    overflow: hidden;
}

.vouches::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(167, 139, 250, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.vouches .section-title {
    color: var(--amethyst-glow);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    margin-bottom: 2rem;
}

.vouches-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    min-height: 300px;
    padding: 20px;
    background: rgba(10, 5, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(5px);
}

.vouch-item {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.vouch-item:hover {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.3);
}

.vouch-content {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.5;
}

.vouch-author {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Simple Vouch Stats */
.vouch-stats-simple {
    text-align: center;
    margin-bottom: 2rem;
}

.rating-display {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 0.8rem 1.5rem;
    backdrop-filter: blur(15px);
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-number {
    font-weight: 600;
    color: var(--amethyst-secondary);
    font-size: 1.1rem;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Vouch Rating Stats */
.vouch-rating-stats {
    margin-bottom: 2rem;
    text-align: center;
}

.rating-display {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(15px);
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--amethyst-secondary);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    line-height: 1;
}

.rating-max {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.rating-stars-display {
    color: #fbbf24;
    font-size: 1.5rem;
    margin: 0.5rem 0;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.rating-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Simple Vouch Search */
.vouch-search-container {
    margin-bottom: 2rem;
    text-align: center;
}

.vouch-search {
    padding: 0.8rem 1.2rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.vouch-search:focus {
    outline: none;
    border-color: var(--amethyst-secondary);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

/* Reputation Header */
.reputation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .reputation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .reputation-stats {
        width: 100%;
        justify-content: space-around;
    }
}

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

.stat-item {
    background: rgba(139, 92, 246, 0.15);
    color: var(--amethyst-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.3);
}



/* Vouch Modal - Using inline styles for simplicity */
/*
.vouch-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vouch-modal.active {
    display: flex;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-content {
    background: rgba(15, 10, 26, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(25px);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(139, 92, 246, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.modal-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.modal-user-details {
    flex: 1;
}

.modal-user-details h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.modal-user-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-user-meta span {
    font-size: 0.9rem;
    color: var(--amethyst-light);
}

.modal-close {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--text-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.modal-close:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--amethyst-secondary);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.modal-stars {
    color: #fbbf24;
    font-size: 1.5rem;
}

.modal-timestamp {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.modal-product {
    margin-bottom: 1.5rem;
}

.product-tag {
    background: var(--accent-gradient);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.modal-message {
    margin-bottom: 1.5rem;
}

.modal-message p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.modal-categories {
    margin-bottom: 1.5rem;
}

.category-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--amethyst-light);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.modal-reactions h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.reaction-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
}

.modal-reaction-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    text-align: center;
}

.reaction-emoji {
    font-size: 1.5rem;
}

.reaction-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}
*/

/* Loading Animation */
.loading-vouches {
    text-align: center;
    padding: 3rem;
    color: var(--amethyst-light);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(139, 92, 246, 0.3);
    border-top: 4px solid var(--amethyst-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

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

@keyframes vouchGlow {
    0% {
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3), 0 0 10px rgba(139, 92, 246, 0.2);
    }
    100% {
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4), 0 0 15px rgba(139, 92, 246, 0.3);
    }
}

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

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 30px rgba(255, 0, 128, 0.8), 0 0 60px rgba(255, 64, 0, 0.6), 0 0 90px rgba(255, 128, 0, 0.4);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 50px rgba(255, 0, 128, 1), 0 0 80px rgba(255, 64, 0, 0.8), 0 0 120px rgba(255, 128, 0, 0.6);
        transform: scale(1.02);
    }
}

@keyframes containerGlow {
    0% {
        box-shadow: 0 0 50px rgba(255, 0, 128, 0.3), 0 0 100px rgba(255, 64, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 80px rgba(255, 0, 128, 0.5), 0 0 140px rgba(255, 64, 0, 0.4);
        border-color: rgba(255, 255, 255, 0.6);
    }
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(0, 255, 0, 1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .vouch-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .control-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .vouch-search {
        min-width: auto;
        width: 100%;
    }

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

    .vouch-list-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

.vouches-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--amethyst-light);
    font-style: italic;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.contact-link:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-method {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contact-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 400;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.footer-credits {
    text-align: right;
}

.footer-credits p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.credit-name {
    color: var(--text-secondary);
    font-weight: 500;
}

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

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadingProgress {
    to {
        width: 100%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
        opacity: 0.9;
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: var(--shadow-glow), 0 8px 32px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 12px 48px rgba(139, 92, 246, 0.4);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-quote {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .bypass-subtitle {
        font-size: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .download-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .product-category-card {
        padding: 1.5rem;
        min-height: 380px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .card-price {
        font-size: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .modal-image {
        height: 120px;
    }
    
    .vouches-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credits {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .hero-quote {
        margin: 1rem 0;
        padding: 0.8rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .bypass-subtitle {
        font-size: 1.3rem;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .step-content h5 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .download-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .free-products {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .free-product-option label {
        padding: 0.8rem;
    }
    
    .product-title {
        font-size: 0.85rem;
    }
    
    .product-desc {
        font-size: 0.75rem;
    }
    
    .product-category-card {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 98%;
        max-height: 98vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .modal-image {
        height: 100px;
    }
    
    .contact-link {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Payment Styles */
.modal-payment {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.modal-payment h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.payment-powered {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-buttons {
    margin-top: 1rem;
}

.paypal-button-container {
    max-width: 400px;
    margin: 0 auto;
}

/* Payment Success Modal */
.payment-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.payment-success-modal.active {
    display: flex;
}

.payment-success-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.success-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.success-message {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.order-id-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.order-id-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-id-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    letter-spacing: 1px;
    word-break: break-all;
}

.hwid-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.hwid-warning-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #ffc107;
    line-height: 1.5;
}

.success-close-btn {
    background: var(--button-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.8rem 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.success-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}


.video-controls {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.play-btn {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: var(--text-primary);
    border: none;
    padding: 1rem 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
    filter: brightness(1.1);
}

/* Popup Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Product Modal Styles */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.modal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.modal-close {
    background: var(--accent-color);
    color: var(--text-primary);
    border: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.modal-close:hover {
    background: #ff4444;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    color: var(--text-primary);
}

.modal-info {
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 1rem;
}

.info-value.available {
    color: var(--success-color);
}

.info-value.sale {
    color: var(--warning-color);
}

.info-value.updating,
.info-value.unavailable {
    color: var(--error-color);
}

.modal-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-description p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modal-features {
    margin: 1.2rem 0;
}

.feature {
    display: block;
    margin: 0.4rem 0;
    padding: 0.4rem 0.6rem;
    background: rgba(16, 185, 129, 0.08);
    border-left: 2px solid var(--success-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    border-radius: 4px;
}

.modal-requirements {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.modal-requirements p {
    margin: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.modal-vouches {
    margin: 2rem 0;
}

.modal-vouches h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vouch-list {
    max-height: 300px;
    overflow-y: auto;
}

.vouch-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.vouch-item:last-child {
    margin-bottom: 0;
}

.vouch-content {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.vouch-author {
    color: var(--accent-color);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-images {
    margin: 2rem 0;
}

.modal-images h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.modal-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.modal-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.modal-payment {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.modal-payment h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-powered {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.payment-buttons {
    margin-top: 1rem;
}

/* Responsive Design for Modals */
@media (max-width: 768px) {
    .product-modal.active {
        padding: 1rem;
    }

    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

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


    .card-title {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}

/* Vouch Submission Form */
.vouch-submit {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(15, 10, 26, 0.9) 0%, rgba(26, 16, 53, 0.95) 50%, rgba(45, 27, 105, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.vouch-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(167, 139, 250, 0.06) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite reverse;
    }

.vouch-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.vouch-form {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
        padding: 1.5rem;
    backdrop-filter: blur(25px);
    box-shadow: var(--shadow-glow), 0 8px 32px rgba(139, 92, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.vouch-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    }

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

.form-group label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    }

.form-group input[type="text"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    background: rgba(20, 10, 35, 0.95);
    border: 2px solid rgba(139, 92, 246, 0.6);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    appearance: none;
    cursor: pointer;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%238b5cf6' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-group input[type="text"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amethyst-secondary);
    background: rgba(20, 10, 35, 0.98);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), inset 0 0 20px rgba(139, 92, 246, 0.1);
    transform: scale(1.02);
}

.form-group input[type="text"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(154, 89, 182, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.rating-stars input[type="radio"] {
    display: none;
}

.rating-stars label {
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
    }

.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: var(--amethyst-light);
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.rating-stars input[type="radio"]:checked ~ label {
    color: var(--amethyst-secondary);
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.8));
}

.submit-vouch-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--accent-gradient);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow), 0 6px 20px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

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

.submit-vouch-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), 0 8px 25px rgba(139, 92, 246, 0.5);
    border-color: var(--amethyst-secondary);
}

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

.submit-vouch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 89, 182, 0.5);
    filter: brightness(1.1);
}

.submit-vouch-btn:active {
    transform: translateY(0);
}


/* Reputation Header */
.reputation-header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.average-rating {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
    opacity: 0.8;
    font-family: 'JetBrains Mono', monospace;
    margin-top: 0.2rem;
}

/* Simple Vouch Modal */
.simple-vouch-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.simple-vouch-modal .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.simple-vouch-modal .modal-content {
    background: rgba(15, 10, 26, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    padding: 30px;
    color: white;
    z-index: 10001;
}

.simple-vouch-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.simple-vouch-modal .modal-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.simple-vouch-modal .modal-user-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
}

.simple-vouch-modal .modal-user-details h3 {
    margin: 0;
    color: #a78bfa;
    font-size: 24px;
}

.simple-vouch-modal .modal-user-meta {
    color: #fbbf24;
    font-weight: bold;
}

.simple-vouch-modal .modal-product {
    margin-bottom: 20px;
}

.simple-vouch-modal .product-tag {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
}

.simple-vouch-modal .modal-message {
    margin-bottom: 20px;
}

.simple-vouch-modal .modal-message p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

.simple-vouch-modal .modal-close {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.simple-vouch-modal .modal-close:hover {
    background: rgba(139, 92, 246, 0.3);
}

