/* Custom Global Variables */
:root {
    --bg-primary: #060913;
    --bg-secondary: #0b0f23;
    --bg-card: rgba(14, 20, 44, 0.55);
    --border-color: rgba(0, 162, 255, 0.15);
    --border-glow: rgba(0, 162, 255, 0.3);
    --text-primary: #f0f3fa;
    --text-secondary: #8b99c4;
    --accent-cyan: #00f0ff;
    --accent-blue: #0072ff;
    --accent-indigo: #4936f5;
    --glow-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
    --glow-strong: 0 0 35px rgba(0, 240, 255, 0.5);
    --font-orbitron: 'Orbitron', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

/* Base Reset & Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-inter);
    overflow-x: hidden;
    position: relative;
}

/* Background Canvas for Particles */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #0c1435 0%, var(--bg-primary) 70%);
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Language Gate / Overlay */
.gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 7, 18, 0.95);
    backdrop-filter: blur(25px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.gate-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.gate-card {
    background: rgba(14, 20, 44, 0.6);
    border: 1px solid var(--border-color);
    padding: 40px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), var(--glow-shadow);
    max-width: 500px;
    width: 90%;
    animation: zoomIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gate-logo {
    font-family: var(--font-orbitron);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.gate-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gate-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px !important;
}

.flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

/* Button Classes */
.btn {
    font-family: var(--font-inter);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.25);
}

.btn-primary:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: var(--glow-strong);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-cyan);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Main Navigation Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 9, 19, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-speed) ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-orbitron);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-v {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    margin-right: 2px;
}

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

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width var(--transition-speed) ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--text-primary);
    cursor: pointer;
    font-family: var(--font-orbitron);
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-speed);
}

.lang-toggle-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.05);
    letter-spacing: 0.5px;
}

.badge-glow i {
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-orbitron);
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(90deg, #0072ff 0%, #00f0ff 50%, #4936f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.15));
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Glowing Sphere and Orbits */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.sphere-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
}

.glowing-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, var(--accent-blue) 40%, var(--accent-indigo) 100%);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.4), 0 0 120px rgba(73, 54, 245, 0.2);
    animation: float 6s ease-in-out infinite;
}

.orbit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px dashed rgba(0, 240, 255, 0.2);
    border-radius: 50%;
}

.orbit-1 {
    transform: rotateX(75deg) rotateY(15deg);
    animation: rotateOrbit 12s linear infinite;
}

.orbit-2 {
    transform: rotateX(75deg) rotateY(-45deg);
    animation: rotateOrbitReverse 16s linear infinite;
}

.orbit-3 {
    transform: rotateX(45deg) rotateY(45deg);
    animation: rotateOrbit 20s linear infinite;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-orbitron);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 16px;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15), var(--glow-shadow);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--accent-cyan);
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Catalog Section */
.catalog-section {
    padding: 100px 0;
}

.catalog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.search-box {
    position: relative;
    width: 320px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

#catalog-search {
    width: 100%;
    background: rgba(14, 20, 44, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 12px 12px 12px 45px;
    color: var(--text-primary);
    font-family: var(--font-inter);
    outline: none;
    transition: all var(--transition-speed);
}

#catalog-search:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.tabs-container {
    display: flex;
    gap: 10px;
    background: rgba(14, 20, 44, 0.5);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

.tab-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: 100px;
    font-family: var(--font-inter);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 114, 255, 0.4);
}

/* Catalog Cards */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.catalog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.1), var(--glow-shadow);
}

.card-header-pic {
    height: 160px;
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.2) 0%, rgba(73, 54, 245, 0.3) 100%), #0c1228;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-bg-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(15px);
}

.card-game-icon {
    font-size: 3.5rem;
    color: var(--text-primary);
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
}

.catalog-card:hover .card-game-icon {
    transform: scale(1.1);
}

.card-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-status-badge.undetected {
    background: rgba(46, 213, 115, 0.12);
    border: 1px solid rgba(46, 213, 115, 0.4);
    color: #2ed573;
}

.card-status-badge.updating {
    background: rgba(ffa502, 0.12);
    border: 1px solid rgba(ffa502, 0.4);
    color: #ffa502;
}

.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.card-title {
    font-family: var(--font-orbitron);
    font-size: 1.4rem;
    font-weight: 700;
}

.card-tag {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-weight: 600;
    letter-spacing: 1px;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-specs {
    list-style: none;
    margin-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.card-specs li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.card-specs li span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(0deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-num {
    font-family: var(--font-orbitron);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.stat-title {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Windows */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 7, 18, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    width: 950px;
    max-width: 95%;
    border-radius: 16px;
    padding: 35px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), var(--glow-shadow);
    transform: translateY(-20px);
    transition: transform var(--transition-speed) ease;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-content {
        padding: 20px;
    }
}

/* --- VT Scanner UI inside Modal --- */
.vt-scanner-box {
    background: #02040a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 100%;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.vt-scanner-header {
    background: #090e18;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.vt-shield-icon {
    color: #2ed573;
    font-size: 1.1rem;
    animation: pulse 1.5s infinite;
}
.vt-scanner-title {
    font-family: var(--font-orbitron);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
}
.vt-engines-grid {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow-y: auto;
    flex-grow: 1;
}
.vt-engine-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
}
.vt-engine-name {
    font-weight: 600;
    color: var(--text-secondary);
}
.vt-engine-status {
    font-weight: 700;
    text-transform: uppercase;
}
.vt-engine-status.scanning {
    color: #ffa502;
}
.vt-engine-status.clean {
    color: #2ed573;
}


.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-speed);
}

.close-modal:hover {
    color: #fff;
}

.modal-header {
    margin-bottom: 25px;
}

.modal-title {
    font-family: var(--font-orbitron);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Terminal Design */
.terminal-box {
    background: #02040a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.terminal-header {
    background: #090e18;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    margin-left: 10px;
    font-family: var(--font-orbitron);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.terminal-body {
    padding: 15px;
    height: 180px;
    overflow-y: auto;
    font-family: monospace;
    font-size: 0.85rem;
    color: #4af626; /* Matrix Green */
    line-height: 1.5;
}

.terminal-line {
    margin-bottom: 4px;
    white-space: pre-wrap;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.05);
    height: 6px;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: width 0.1s linear;
}

.progress-status {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
}

.modal-footer .btn {
    width: 100%;
    padding: 14px;
}

/* Footer Section */
.main-footer {
    background: #04060f;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 20px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links h4, .footer-disclaimer h4 {
    font-family: var(--font-orbitron);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

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

.footer-disclaimer p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
    color: #475569;
    font-size: 0.85rem;
}

/* Keyframes & Animations */
@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

@keyframes float {
    0% { transform: translate(-50%, -52%); }
    50% { transform: translate(-50%, -48%); }
    100% { transform: translate(-50%, -52%); }
}

@keyframes rotateOrbit {
    0% { transform: rotateX(75deg) rotateY(0deg) rotate(0deg); }
    100% { transform: rotateX(75deg) rotateY(360deg) rotate(360deg); }
}

@keyframes rotateOrbitReverse {
    0% { transform: rotateX(75deg) rotateY(0deg) rotate(0deg); }
    100% { transform: rotateX(75deg) rotateY(-360deg) rotate(-360deg); }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Adaptation */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-disclaimer {
        grid-column: span 2;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Can toggle in real mobile site, kept simple & neat */
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-disclaimer {
        grid-column: span 1;
    }
}

/* --- Socials & Settings Panel UI --- */
.settings-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
}
.settings-toggle-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.social-links-header {
    display: flex;
    gap: 10px;
}
.social-icon-btn {
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all var(--transition-speed);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.social-icon-btn:hover {
    color: var(--accent-cyan);
    transform: scale(1.05);
}

.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.social-links-footer .social-icon-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    gap: 8px;
}
.social-links-footer .social-icon-btn:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

/* Settings Drawer Panel */
.settings-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 340px;
    height: 100vh;
    background: rgba(8, 12, 28, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    z-index: 1001;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}
.settings-drawer.active {
    transform: translateX(0);
}
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.drawer-header h3 {
    font-family: var(--font-orbitron);
    font-size: 1.25rem;
    letter-spacing: 1px;
}
.close-drawer {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-speed);
}
.close-drawer:hover {
    color: var(--accent-cyan);
}
.drawer-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.setting-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Switch Toggle styling */
.switch-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}
.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider-round {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255,255,255,0.1);
    transition: .3s;
    border-radius: 34px;
    border: 1px solid var(--border-color);
}
.slider-round:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-secondary);
    transition: .3s;
    border-radius: 50%;
}
input:checked + .slider-round {
    background-color: rgba(0, 240, 255, 0.2);
    border-color: var(--accent-cyan);
}
input:checked + .slider-round:before {
    transform: translateX(20px);
    background-color: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
}

/* Settings Overrides */
body.no-glow {
    --glow-shadow: none !important;
    --glow-strong: none !important;
}
body.no-glow .glowing-sphere,
body.no-glow .catalog-card:hover,
body.no-glow .feature-card:hover {
    box-shadow: none !important;
    text-shadow: none !important;
}
body.no-glow .gradient-text {
    filter: none !important;
}

body.no-particles #particles-canvas {
    display: none !important;
}
body.no-particles .glowing-sphere,
body.no-particles .orbit {
    animation: none !important;
}

/* --- Stars & Rating UI --- */
.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.stars {
    color: #ffb300;
    text-shadow: 0 0 8px rgba(255, 179, 0, 0.4);
    font-size: 0.85rem;
}
.rating-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffb300;
}

/* --- VirusTotal Badge UI --- */
.vt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 213, 115, 0.08);
    border: 1px solid rgba(46, 213, 115, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #2ed573;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed);
}
.vt-badge:hover {
    background: rgba(46, 213, 115, 0.15);
    border-color: #2ed573;
    box-shadow: 0 0 10px rgba(46, 213, 115, 0.2);
}
.vt-badge i {
    font-size: 0.85rem;
}

/* --- FAQ Accordion UI --- */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-color);
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
}
.faq-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.05);
}
.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    user-select: none;
    transition: color var(--transition-speed);
}
.faq-question:hover {
    color: var(--accent-cyan);
}
.faq-icon {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: transform var(--transition-speed) ease;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-cyan);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
    padding: 0 30px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

/* --- Online Indicator Badge --- */
.online-indicator-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 213, 115, 0.05);
    border: 1px solid rgba(46, 213, 115, 0.15);
    padding: 6px 12px;
    border-radius: 8px;
    font-family: var(--font-orbitron);
    font-size: 0.8rem;
    font-weight: 600;
}
.online-dot {
    width: 8px;
    height: 8px;
    background: #2ed573;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ed573;
    animation: vt-pulse 1.8s infinite;
}
.online-text {
    color: #2ed573;
}

@keyframes vt-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(46, 213, 115, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 213, 115, 0); }
}


