@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Inter:wght@300;400;600;800&display=swap');

:root {
    --primary: #FF5500;
    --primary-glow: rgba(255, 85, 0, 0.3);
    --primary-light: #FF7A30;
    --adobe: #FF0000;
    --gradient-start: #FF5500;
    --gradient-end: #FF8C00;
    --dark: #000000;
    --dark-alt: #0A0A0A;
    --dark-accent: #111111;
    --text: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border: rgba(255, 85, 0, 0.3);
    --border-light: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    backdrop-filter: blur(10px);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 85, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 85, 0, 0.08) 0%, transparent 40%);
}

.container {
    width: 92%;
    max-width: 1100px;
    margin: 2rem auto;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 
        0 0 40px rgba(0, 0, 0, 0.2), 
        0 0 100px rgba(255, 85, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.nav-container {
    margin: 2.5rem 0;
}

.nav-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
    max-width: 600px;
}

.nav-item {
    flex: 1;
    text-align: center;
    padding: 1rem 0;
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 85, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nav-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-item:hover::before {
    transform: translateX(100%);
}

.nav-item a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    display: block;
    position: relative;
    z-index: 1;
}

.notification-bar {
    padding: 1rem;
    margin: 2rem 0;
    background: rgba(255, 85, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: center;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-dim);
    overflow: hidden;
}

.notification-text {
    white-space: nowrap;
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

.hero {
    text-align: center;
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.5);
    border-radius: 12px;
    position: relative;
}

.hero::before, .hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    z-index: -1;
}

.hero::before {
    top: -100px;
    left: -100px;
    background: var(--primary);
}

.hero::after {
    bottom: -100px;
    right: -100px;
    background: var(--primary);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #FFF, #CCC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary);
    position: relative;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dim);
    line-height: 1.8;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.3);
}

.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: all 0.6s ease;
}

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

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

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    margin: 3rem 0;
}

.section {
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.5);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 3px;
}

.section-title span {
    color: var(--primary);
}

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

.download-card {
    background: rgba(20, 20, 20, 0.6);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.download-card.recommended {
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(255, 85, 0, 0.3);
    position: relative;
}

.download-card.recommended::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 9px;
    border: 1px solid var(--primary);
    box-shadow: inset 0 0 10px rgba(255, 85, 0, 0.2);
    pointer-events: none;
}

.recommended-badge {
    position: absolute;
    right: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(255, 85, 0, 0.3);
}

.download-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.download-name {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.download-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: 'Space Mono', monospace;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 85, 0, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.changelog-list {
    font-family: 'Space Mono', monospace;
    border-radius: 8px;
    overflow: hidden;
}

.changelog-item {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    transition: background-color 0.2s ease;
}

.changelog-item:hover {
    background: rgba(30, 30, 30, 0.6);
}

.changelog-version {
    color: var(--primary);
    font-weight: 700;
    min-width: 80px;
    position: relative;
    padding-left: 1rem;
}

.changelog-version::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.changelog-details {
    flex: 1;
    padding-left: 1.5rem;
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

.changelog-entry {
    margin-bottom: 0.5rem;
    display: flex;
}

.changelog-entry:last-child {
    margin-bottom: 0;
}

.changelog-type {
    margin-right: 0.5rem;
    color: var(--primary);
}

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

.counter span {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.counter img {
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer {
    text-align: center;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 1.5rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0;
    }
    
    .nav-bar {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section {
        padding: 1.5rem;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .changelog-item {
        flex-direction: column;
    }
    
    .changelog-version {
        margin-bottom: 1rem;
    }
    
    .changelog-details {
        padding-left: 0;
    }
}
