:root {
    --bg-dark: #02050a;
    --navy-blue: #0a192f;
    --primary-blue: #007bff;
    --accent-blue: #00d2ff;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glow-shadow: 0 0 15px rgba(0, 123, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Effects */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, var(--navy-blue) 0%, var(--bg-dark) 100%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    z-index: -1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--accent-blue);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

/* Background Noise Texture */
.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Cfilter id='noiseFilter'%3%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3%3C/filter%3%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3%3C/svg%3e");
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

@keyframes moveOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Content Wrapper */
.content-wrapper {
    max-width: 900px;
    width: 90%;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.reveal {
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-container .logo {
    width: clamp(200px, 40vw, 320px);
    height: auto;
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.status-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    box-shadow: var(--glow-shadow);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-blue);
}

.brand-name {
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 800;
    letter-spacing: -4px;
    background: linear-gradient(to bottom, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.tagline {
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 550px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Promo Section */
.promo-section {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.6;
}

.video-container {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
    background: var(--glass-bg);
    padding: 8px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card:hover {
    border-color: rgba(0, 123, 255, 0.3);
}

.feature-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.service-notice {
    font-size: 14px;
    color: var(--text-white);
    background: rgba(0, 123, 255, 0.05);
    border-left: 3px solid var(--primary-blue);
    padding: 12px 20px;
    max-width: 600px;
    line-height: 1.5;
    border-radius: 4px;
    text-align: center;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.discord-btn,
.youtube-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.discord-btn {
    background: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.youtube-btn {
    background: #ff0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.discord-btn:hover,
.youtube-btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.discord-btn:hover {
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.6);
}

.youtube-btn:hover {
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.5);
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: all 0.6s;
}

.discord-btn:hover::before {
    left: 100%;
}

.discord-btn:hover {
    transform: translateY(-4px) scale(1.02);
    background: #0069d9;
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.6);
}

.discord-btn:active {
    transform: translateY(0);
}

.discord-icon {
    width: 24px;
    height: 24px;
}

.contact-info {
    font-size: 14px;
    color: var(--text-muted);
}

.email-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    text-decoration: underline;
}

/* Footer */
.main-footer {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* Typing Caret Animation */
#typing-tagline::after {
    content: '|';
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .content-wrapper {
        padding: 30px 15px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card {
        padding: 16px;
    }
}