:root {
    --primary: #00ff88;
    --secondary: #0088ff;
    --danger: #ff0066;
    --warning: #ff6600;
    --background: #0a0a0a;
    --surface: #1a1a1a;
    --surface-light: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border: #333333;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary);
}
.nav-menu {
    display: flex;
    gap: 2rem;
}
.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-menu a:hover {
    color: var(--primary);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}
.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.hero-buttons {
    display: flex;
    gap: 1rem;
}
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}
.btn-primary {
    background: var(--gradient);
    color: var(--background);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.spoofer-preview {
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.preview-header {
    background: var(--surface-light);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}
.window-controls {
    display: flex;
    gap: 0.5rem;
}
.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.control.close { background: #ff5f5f; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #28ca42; }
.preview-title {
    font-weight: 600;
    color: var(--primary);
}
.preview-content {
    padding: 2rem;
}
.status-section {
    margin-bottom: 2rem;
}
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.status-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.spoof-options {
    margin-bottom: 2rem;
}
.option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}
.option-row:last-child {
    border-bottom: none;
}
.toggle {
    width: 50px;
    height: 25px;
    border-radius: 25px;
    background: var(--border);
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}
.toggle.active {
    background: var(--primary);
}
.toggle::after {
    content: '';
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}
.toggle.active::after {
    transform: translateX(25px);
}
.spoof-button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    border: none;
    border-radius: 8px;
    color: var(--background);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.spoof-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
section {
    padding: 5rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}
.features {
    background: var(--surface);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--background);
}
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}
.tab-btn.active,
.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.analysis-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.card-header {
    background: var(--surface-light);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.card-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}
.hardware-info {
    padding: 1.5rem;
}
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}
.info-row:last-child {
    border-bottom: none;
}
.label {
    color: var(--text-secondary);
    font-weight: 500;
}
.value {
    font-family: 'Courier New', monospace;
    font-weight: 600;
}
.value.original {
    color: var(--danger);
}
.value.spoofed {
    color: var(--primary);
}
.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.compatibility-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.compatibility-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.status-badge.supported {
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary);
}
.compatibility-list {
    padding: 1.5rem;
}
.compat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}
.compat-item:last-child {
    border-bottom: none;
}
.compat-name {
    color: var(--text-primary);
}
.fa-check-circle.supported {
    color: var(--primary);
}
.reviews {
    background: var(--surface);
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}
.reviews-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.reviews-track {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    width: max-content;
    animation: scrollReviews 20s linear infinite;
}
.reviews-track::after {
    content: '';
    display: inline-block;
    width: 100%;
}
@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.review-box {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 400px;
    max-width: 400px;
    white-space: normal;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.review-box:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.username {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}
.rating {
    color: #ffd700;
    font-size: 1.1rem;
}
.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.review-likes {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.review-likes i {
    color: var(--danger);
}
.download {
    background: var(--background);
    text-align: center;
}
.download-content {
    max-width: 600px;
    margin: 0 auto;
}
.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.download-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.download-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}
.feature-item i {
    color: var(--primary);
}
.download-btn {
    padding: 1.25rem 3rem;
    background: var(--gradient);
    border: none;
    border-radius: 8px;
    color: var(--background);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}
.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}
.download-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-stats {
        justify-content: center;
    }
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    .review-box {
        min-width: 300px;
        max-width: 300px;
    }
    .download-features {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .compatibility-grid {
        grid-template-columns: 1fr;
    }
}