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

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-90vh) translateX(30px);
        opacity: 0;
    }
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes streamSweep {
    0% {
        left: 0%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 80px);
        opacity: 0;
    }
}

@keyframes neonPulse {

    0%,
    100% {
        text-shadow:
            0 0 20px rgba(124, 58, 255, 0.7),
            0 0 60px rgba(124, 58, 255, 0.35),
            0 0 100px rgba(124, 58, 255, 0.15);
    }

    50% {
        text-shadow:
            0 0 25px rgba(124, 58, 255, 0.9),
            0 0 70px rgba(124, 58, 255, 0.5),
            0 0 120px rgba(124, 58, 255, 0.25),
            0 0 180px rgba(124, 58, 255, 0.1);
    }
}

:root {
    --bg-primary: #07070e;
    --bg-secondary: #18181b;
    --text-primary: #efeff1;
    --accent: #9147ff;
    --border: #7c3aff1f;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(7, 7, 14, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
}

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

.nav {
    position: relative;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav:hover .nav-menu,
.nav:focus-within .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-menu li a:hover {
    background: rgba(124, 58, 255, 0.15);
    color: var(--accent);
}

body>.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

body>.particles>.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(124, 58, 255, 0.7);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    bottom: 0vw !important;
}

body>.content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 1rem 2rem 1rem;
}

body>.content>.hero {
    text-align: center;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body>.content>.hero>.logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

body>.content>.hero>.logo-container>.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

body>.content>.hero>.logo-container>.orb1 {
    width: 300px;
    height: 300px;
    background: rgba(124, 58, 255, 0.08);
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    animation: orbFloat 6s ease-in-out infinite;
}

body>.content>.hero>.logo-container>.orb2 {
    width: 200px;
    height: 200px;
    background: rgba(58, 140, 255, 0.06);
    bottom: -60px;
    right: -40px;
    animation: orbFloat 8s ease-in-out infinite reverse;
}

body>.content>.hero>.logo-container>.logo {
    position: relative;
}

body>.content>.hero>.logo-container>.logo>.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 15vw, 100px);
    letter-spacing: clamp(5px, 2vw, 10px);
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow:
        0 0 20px rgba(124, 58, 255, 0.7),
        0 0 60px rgba(124, 58, 255, 0.35),
        0 0 100px rgba(124, 58, 255, 0.15);
    animation: neonPulse 3s ease-in-out infinite;
}

body>.content>.hero>.logo-container>.logo>.logo-text>.six {
    color: #7c3aff;
    text-shadow:
        0 0 15px rgba(124, 58, 255, 1),
        0 0 40px rgba(124, 58, 255, 0.7),
        0 0 80px rgba(124, 58, 255, 0.4),
        0 0 140px rgba(124, 58, 255, 0.2);
    position: relative;
}

body>.content>.hero>.logo-container>.logo>.stream-line {
    width: 100%;
    height: 2px;
    position: relative;
    z-index: 2;
    margin-top: 5px;
    margin-bottom: 16px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 255, 0.15), transparent);
    overflow: visible;
}

body>.content>.hero>.logo-container>.logo>.stream-line::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, transparent, #7c3aff, #3a8cff, transparent);
    border-radius: 2px;
    animation: streamSweep 2.8s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(124, 58, 255, 0.6), 0 0 30px rgba(58, 140, 255, 0.3);
}

body>.content>.hero>.logo-container>.logo-reflection {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 15vw, 100px);
    letter-spacing: clamp(5px, 2vw, 10px);
    color: rgba(124, 58, 255, 0.08);
    transform: scaleY(-0.35);
    transform-origin: top center;
    filter: blur(3px);
    pointer-events: none;
    position: relative;
    z-index: 1;
    margin-top: -20px;
    height: 0vw;
}

body>.content>.hero>.subtitle {
    font-size: 1.25rem;
    color: #adadb8;
}

body>.content>.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

body>.content>.features>.feature {
    background: linear-gradient(140deg, #0d0d1a 0%, #08081a 50%, #110d1f 100%);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0 80px rgba(124, 58, 255, 0.06), 0 0 200px rgba(124, 58, 255, 0.03), inset 0 0 120px rgba(124, 58, 255, 0.02);
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    cursor: pointer;
}

body>.content>.features>.feature:hover {
    box-shadow: 0 20px 40px rgba(124, 58, 255, 0.2), 0 0 80px rgba(124, 58, 255, 0.1);
}

body>.content>.features>.feature>.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

body>.content>.features>.feature>h3 {
    margin-bottom: 0.5rem;
}

body>.content>.features>.feature>p {
    font-size: 0.875rem;
    color: #adadb8;
}

/* Contact Section */
body>.content>.contact-section {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

body>.content>.contact-section>.contact-desc {
    color: #888;
    margin-bottom: 1.5rem;
}

body>.content>.contact-section>.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

body>.content>.contact-section>.contact-buttons>.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

body>.content>.contact-section>.contact-buttons>.contact-btn:hover {
    transform: translateY(-2px);
}

body>.content>.contact-section>.contact-buttons>.contact-btn.contact-mail {
    background: linear-gradient(135deg, #9147ff, #772ce8);
    color: #fff;
}

body>.content>.contact-section>.contact-buttons>.contact-btn.contact-mail:hover {
    box-shadow: 0 4px 20px rgba(145, 71, 255, 0.4);
}

body>.content>.contact-section>.contact-buttons>.contact-btn.contact-discord {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: #fff;
}

body>.content>.contact-section>.contact-buttons>.contact-btn.contact-discord:hover {
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

body>.content>.contact-section>.contact-buttons>.contact-btn i {
    font-size: 1.2rem;
}

/* Section Titles */
body>.content>.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 2px;
}

/* Tech Stack Section */
body>.content>.tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 0 3rem 0;
}

body>.content>.tech-tags>.tech-tag {
    background: rgba(124, 58, 255, 0.1);
    border: 1px solid rgba(124, 58, 255, 0.25);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

body>.content>.tech-tags>.tech-tag:hover {
    background: rgba(124, 58, 255, 0.25);
    border-color: rgba(124, 58, 255, 0.5);
    transform: translateY(-2px);
}

/* Partner Section */
body>.content>.features.partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

body>.content>.features.partner-grid>.feature {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
}

body>.content>.features>.feature>.partner-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

body>.content>.features>.feature>.partner-link:hover {
    color: #772ce8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body>.content>.features.partner-grid>.feature {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 480px) {
    body>.content>.features.partner-grid>.feature {
        flex: 0 0 100%;
        max-width: 100%;
    }

    body>.content>.features {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 1rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.footer-social-link {
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: var(--accent);
}

.footer-copyright {
    flex: 1;
    text-align: center;
    color: #6b6b76;
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-legal-link {
    color: #adadb8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: var(--text-primary);
}
