:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --bg-card-hover: #252525;
    --red-primary: #ff0000;
    --red-dark: #cc0000;
    --red-glow: rgba(255, 0, 0, 0.5);
    --red-subtle: rgba(255, 0, 0, 0.1);
    --white: #ffffff;
    --gray-light: #b0b0b0;
    --gray: #808080;
    --gray-dark: #404040;
    --discord-blue: #5865F2;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    z-index: 1000;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--red-primary);
    text-shadow: 0 0 20px var(--red-glow);
}

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

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    box-shadow: 0 0 10px var(--red-glow);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--red-primary);
    text-shadow: 0 0 10px var(--red-glow);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    z-index: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
}

.logo-4 {
    color: var(--white);
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
    animation: pulse-white 3s ease-in-out infinite;
}

.logo-e {
    color: var(--red-primary);
    text-shadow:
        0 0 20px var(--red-glow),
        0 0 40px var(--red-glow),
        0 0 60px var(--red-glow),
        0 0 80px var(--red-glow);
    animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% {
        text-shadow:
            0 0 20px var(--red-glow),
            0 0 40px var(--red-glow),
            0 0 60px var(--red-glow);
    }
    50% {
        text-shadow:
            0 0 30px var(--red-glow),
            0 0 60px var(--red-glow),
            0 0 90px var(--red-glow),
            0 0 120px var(--red-glow);
    }
}

@keyframes pulse-white {
    0%, 100% {
        text-shadow:
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 40px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow:
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 50px rgba(255, 255, 255, 0.3);
    }
}

.tagline {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.sub-tagline {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--red-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px var(--red-subtle);
}

.version-badge .version-icon {
    color: #00ff00;
    font-weight: bold;
}

.version-badge strong {
    color: var(--red-primary);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: var(--white);
    box-shadow: 0 0 20px var(--red-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--red-glow), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--red-primary);
    box-shadow: 0 0 10px var(--red-glow);
}

.btn-secondary:hover {
    background: var(--red-subtle);
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--red-glow);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-discord {
    background: var(--discord-blue);
    color: var(--white);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.7), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--red-primary);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--red-primary);
    border-radius: 50%;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 25px; opacity: 0.3; }
}

section {
    padding: 6rem 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
    margin: 1rem auto 0;
    box-shadow: 0 0 10px var(--red-glow);
}

.features {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
}

.features-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: -2rem;
}

.feature-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-category {
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), var(--red-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-category:hover {
    transform: translateY(-5px);
    border-color: var(--red-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px var(--red-subtle);
}

.feature-category:hover::before {
    transform: scaleX(1);
}

.feature-category.donut-category {
    border-color: rgba(255, 150, 0, 0.3);
    background: linear-gradient(135deg, var(--bg-card), rgba(255, 100, 0, 0.05));
}

.feature-category.donut-category:hover {
    border-color: #ff9600;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 150, 0, 0.3);
}

.feature-category.donut-category::before {
    background: linear-gradient(90deg, #ff9600, #ff6600);
}

.feature-category.donut-category .category-header h3 {
    color: #ff9600;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-icon {
    font-size: 1.5rem;
}

.category-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-list li {
    background: var(--bg-darker);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: var(--bg-card-hover);
    border-color: var(--red-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.feature-category.donut-category .feature-list li:hover {
    border-color: #ff9600;
}

.launchers {
    background: var(--bg-darker);
}

.launchers-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: -2rem;
}

.launchers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.launcher-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.launcher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--red-subtle), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.launcher-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: var(--bg-card-hover);
    border-color: var(--red-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px var(--red-subtle);
}

.launcher-card:hover::before {
    opacity: 1;
}

.launcher-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

.launcher-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.launchers-more {
    text-align: center;
    margin-top: 2rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gray);
    letter-spacing: 2px;
}

.community {
    background: var(--bg-darker);
    overflow: hidden;
}

.community-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    margin-top: -2rem;
}

.gallery-wrapper {
    overflow: hidden;
    padding: 1rem 0;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-gallery 30s linear infinite;
    width: fit-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-gallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-item {
    flex-shrink: 0;
    width: 350px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--red-primary);
    box-shadow: 0 0 20px var(--red-glow);
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.donutsmp {
    background: linear-gradient(135deg, var(--bg-dark), #1a0505);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem;
}

.donutsmp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, var(--red-subtle), transparent 50%),
        radial-gradient(circle at 80% 50%, var(--red-subtle), transparent 50%);
    pointer-events: none;
}

.donutsmp-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.donutsmp-badge {
    display: inline-block;
    background: var(--red-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 10px var(--red-glow); }
    50% { box-shadow: 0 0 25px var(--red-glow); }
}

.donutsmp-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    color: var(--red-primary);
    text-shadow: 0 0 30px var(--red-glow);
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.donutsmp-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.donutsmp-subtext {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download {
    background: var(--bg-dark);
}

.download-container {
    max-width: 800px;
    margin: 0 auto;
}

.download-main {
    text-align: center;
    margin-bottom: 2rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: 15px;
    font-family: var(--font-display);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--red-glow);
    animation: pulse-download 2s ease-in-out infinite;
}

@keyframes pulse-download {
    0%, 100% { box-shadow: 0 0 30px var(--red-glow); }
    50% { box-shadow: 0 0 50px var(--red-glow), 0 0 80px var(--red-subtle); }
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--red-glow);
}

.download-icon {
    font-size: 2.5rem;
    animation: bounce-down 1s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.download-text {
    text-align: left;
}

.download-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-subtitle {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.install-guide {
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.install-guide h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--red-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.install-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg-darker);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.install-step:hover {
    border-color: var(--red-primary);
    transform: translateX(5px);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 0 15px var(--red-glow);
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-content a {
    color: var(--red-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.step-content a:hover {
    color: var(--white);
}

.step-content strong {
    color: var(--white);
}

.path-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-card);
    border-radius: 5px;
    font-size: 0.85rem;
}

.path-label {
    color: var(--gray);
    font-weight: 600;
    min-width: 70px;
}

.path-box code {
    color: var(--red-primary);
    font-family: 'Courier New', monospace;
    background: rgba(255, 0, 0, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

.requirements {
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.requirements h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--red-primary);
}

.requirements-info {
    text-align: center;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.requirement-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-darker);
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.requirement-card:hover {
    border-color: var(--red-primary);
    background: var(--bg-card-hover);
    transform: translateX(5px);
}

.requirement-icon {
    font-size: 2rem;
}

.requirement-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.requirement-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

.external-link {
    margin-left: auto;
    font-size: 1.2rem;
    color: var(--gray);
    transition: color 0.3s ease;
}

.requirement-card:hover .external-link {
    color: var(--red-primary);
}

.discord {
    background: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
    text-align: center;
}

.discord-content {
    max-width: 600px;
    margin: 0 auto;
}

.discord-icon {
    color: var(--discord-blue);
    margin-bottom: 1.5rem;
}

.discord h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.discord p {
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.discord-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--discord-blue);
}

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

.footer {
    background: var(--bg-darker);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--red-primary);
    text-shadow: 0 0 20px var(--red-glow);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--gray-light);
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--red-primary);
}

.footer-copy {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    color: var(--gray-dark);
    font-size: 0.8rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .discord-stats {
        gap: 2rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .download-btn {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 2rem;
    }

    .download-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 6rem;
    }

    .tagline {
        letter-spacing: 2px;
    }

    .gallery-item {
        width: 280px;
        height: 160px;
    }
}
