/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: #e8e3d8;
    background: #0a0a0a;
    overflow-x: hidden;
    position: relative;
}

/* Background */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(25, 25, 112, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(85, 107, 47, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    z-index: -1;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 227, 216, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #b8860b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: #8b0000;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e8e3d8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: #b8860b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b8860b, #8b0000);
    transition: width 0.3s ease;
}

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

/* Main Content */
.main {
    margin-top: 80px;
}

.section {
    min-height: 100vh;
    padding: 4rem 0;
    display: none;
}

.section.active {
    display: block;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #b8860b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #b8860b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #8b0000;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #e8e3d8;
}

.hero-cta {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.btn-hero {
    background: linear-gradient(135deg, #dc143c, #8b0000);
    color: #ffffff;
    border: 2px solid #dc143c;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.btn-hero:hover {
    background: linear-gradient(135deg, #ff1744, #dc143c);
    border-color: #ff1744;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5);
    color: #ffffff;
}

.btn-hero i {
    font-size: 1.3rem;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(232, 227, 216, 0.05);
    border: 1px solid rgba(232, 227, 216, 0.1);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
}

.feature-card:hover {
    background: rgba(232, 227, 216, 0.08);
    border-color: rgba(184, 134, 11, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: #b8860b;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e8e3d8;
}

.feature-card p {
    color: #c9c4b5;
}

/* Link Cards */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.link-card {
    background: rgba(232, 227, 216, 0.05);
    border: 1px solid rgba(232, 227, 216, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
}

.link-card:hover {
    background: rgba(232, 227, 216, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.link-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #b8860b;
}

.link-card p {
    color: #c9c4b5;
    margin-bottom: 1.5rem;
}

.status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(139, 0, 0, 0.8);
    color: #e8e3d8;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status.coming-soon {
    background: rgba(184, 134, 11, 0.8);
}

.status.available {
    background: rgba(34, 139, 34, 0.8);
    color: #ffffff;
}

/* Download Cards */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.download-card {
    background: rgba(232, 227, 216, 0.05);
    border: 1px solid rgba(232, 227, 216, 0.1);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
}

.download-card:hover {
    background: rgba(232, 227, 216, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.download-card i {
    font-size: 3rem;
    color: #8b0000;
    margin-bottom: 1rem;
}

.download-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e8e3d8;
}

.download-card p {
    color: #c9c4b5;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid;
    text-align: center;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8b0000, #b8860b);
    color: #e8e3d8;
    border-color: #8b0000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8860b, #8b0000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #556b2f, #8fbc8f);
    color: #e8e3d8;
    border-color: #556b2f;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #8fbc8f, #556b2f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 107, 47, 0.3);
}

.btn-tertiary {
    background: linear-gradient(135deg, #191970, #4169e1);
    color: #e8e3d8;
    border-color: #191970;
}

.btn-tertiary:hover {
    background: linear-gradient(135deg, #4169e1, #191970);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 25, 112, 0.3);
}

.btn-download {
    background: rgba(232, 227, 216, 0.1);
    color: #e8e3d8;
    border-color: #b8860b;
}

.btn-download:hover {
    background: #b8860b;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    border-top: 1px solid rgba(232, 227, 216, 0.1);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    color: #c9c4b5;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .btn-hero {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .features-grid,
    .links-grid,
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .main {
        margin-top: 120px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-hero {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .main {
        margin-top: 140px;
    }
}

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

.section.active {
    animation: fadeInUp 0.6s ease;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #b8860b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8b0000;
}
