/* VRChat Plugin Manager Pro - Professional Styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

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

.brand img {
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.5));
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

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

.nav-link {
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: #00D4FF;
}

.btn-primary {
    background: linear-gradient(135deg, #00D4FF, #0099CC);
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0f, #1a1a2e);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.highlight {
    background: linear-gradient(135deg, #00D4FF, #0099CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #00D4FF, #0099CC);
    color: #000;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #00D4FF;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #a1a1aa;
}

/* App Preview */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    width: 100%;
    max-width: 400px;
}

.app-window {
    background: rgba(20, 20, 30, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.window-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close { background: #ff5f57; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #28ca42; }

.window-title {
    font-size: 14px;
    color: #a1a1aa;
    font-weight: 500;
}

.window-content {
    padding: 20px;
}

.plugin-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plugin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plugin-item.active {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.plugin-name {
    font-weight: 500;
    color: #ffffff;
}

.plugin-status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.plugin-item.active .plugin-status {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.plugin-item:not(.active) .plugin-status {
    background: rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
}

/* Sections */
.features, .plugins, .download, .support {
    padding: 80px 0;
}

.features {
    background: rgba(0, 0, 0, 0.2);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #a1a1aa;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #a1a1aa;
    line-height: 1.6;
}

/* Plugin Grid */
.plugin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plugin-card {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.plugin-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

.plugin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.plugin-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.plugin-status {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
}

.plugin-status.active {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.plugin-status.premium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.plugin-card p {
    color: #a1a1aa;
    margin-bottom: 20px;
    line-height: 1.5;
}

.plugin-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(0, 212, 255, 0.1);
    color: #00D4FF;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, #1a1a2e, #0a0a0f);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.download-info p {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 30px;
}

.system-requirements h3 {
    color: #00D4FF;
    font-size: 18px;
    margin-bottom: 15px;
}

.system-requirements ul {
    list-style: none;
}

.system-requirements li {
    color: #a1a1aa;
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.system-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.download-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.download-header h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 5px;
}

.version {
    color: #a1a1aa;
    font-size: 14px;
    margin-bottom: 15px;
}

.download-size {
    color: #a1a1aa;
    margin-bottom: 25px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-download {
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-download.primary {
    background: linear-gradient(135deg, #00D4FF, #0099CC);
    color: #000;
}

.btn-download.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-download.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-download.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.download-note {
    text-align: left;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.download-note p {
    color: #ffc107;
    font-size: 14px;
    margin: 0;
}

/* Support Section */
.support {
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.support-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.support-content p {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 40px;
}

.support-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.support-stat {
    text-align: center;
}

.support-stat .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #5865f2;
    margin-bottom: 5px;
}

.support-stat .stat-label {
    font-size: 14px;
    color: #a1a1aa;
}

.btn-discord {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.4);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #ffffff;
}

.footer-brand img {
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.5));
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00D4FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #a1a1aa;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid, .plugin-grid {
        grid-template-columns: 1fr;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .support-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
}