/* Root Variables */

:root {
    --primary-color: #ff0055;
    --secondary-color: #ff1a75;
    --accent-color: #ff4d8f;
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --bg-card: #1a0a1a;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --gradient-1: linear-gradient(135deg, #ff0055 0%, #ff1a75 100%);
    --gradient-2: linear-gradient(135deg, #ff0055 0%, #ff3366 100%);
    --gradient-retro: linear-gradient(135deg, #ff0055 0%, #ff1a75 100%);
    --glow: 0 0 30px rgba(255, 0, 85, 0.6);
    --glow-strong: 0 0 50px rgba(255, 0, 85, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

.no-scroll {
    overflow: hidden !important;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 0, 85, 0.04) 2px, rgba(255, 0, 85, 0.04) 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 0, 85, 0.04) 2px, rgba(255, 0, 85, 0.04) 4px);
    background-size: 50px 50px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=VT323&family=Share+Tech+Mono&display=swap');
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 0, 85, 0.3);
    z-index: 1000;
    box-shadow: var(--glow-strong), inset 0 0 20px rgba(255, 0, 85, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    padding: 10px 25px;
    background: var(--gradient-1);
    color: var(--text-primary);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


/* Hero Section */

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(255, 0, 85, 0.25), transparent 55%), radial-gradient(circle at bottom right, rgba(255, 0, 85, 0.18), transparent 55%), #050510;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: saturate(1.3) contrast(1.1) blur(1px);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(5, 5, 16, 0.1), rgba(5, 5, 16, 0.9));
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 580px;
    animation: fadeUp 0.9s ease-out 0.15s both;
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.hero-description {
    margin-top: 18px;
    font-size: 16px;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 0 22px rgba(255, 0, 85, 0.55);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--glow-strong);
}

.btn-secondary {
    background: rgba(5, 5, 16, 0.7);
    color: var(--text-primary);
    border: 1px solid rgba(255, 0, 85, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 0, 85, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(255, 0, 85, 0.4);
}

.btn-large {
    padding: 14px 34px;
    font-size: 15px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: floatSlow 6s ease-in-out infinite;
}

.profile-container {
    position: relative;
}

.profile-image {
    width: 260px;
    height: 260px;
    border-radius: 999px;
    object-fit: cover;
    border: 4px solid rgba(255, 0, 85, 0.7);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.75);
}

.profile-glow {
    position: absolute;
    inset: -18px;
    border-radius: 999px;
    background: conic-gradient(from 140deg, #ff0055, #ff4d8f, #ff1a75, #ff0055);
    opacity: 0.18;
    filter: blur(16px);
    z-index: -1;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 42px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    animation: wheelMove 1.7s ease-in-out infinite;
}

@keyframes wheelMove {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}


/* Glitch Title */

.glitch {
    position: relative;
    display: inline-block;
    font-size: 64px;
    line-height: 1.1;
    font-family: 'VT323', monospace;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 0, 85, 0.7);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    clip-path: inset(0 0 50% 0);
}

.glitch::before {
    left: 1px;
    text-shadow: -2px 0 #00f0ff;
    animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -1px;
    text-shadow: 2px 0 #ff0055;
    clip-path: inset(50% 0 0 0);
    animation: glitchBottom 1.7s infinite linear alternate-reverse;
}

@keyframes glitchTop {
    0% {
        transform: translate(0, 0);
    }
    20% {
        transform: translate(-1px, -1px);
    }
    40% {
        transform: translate(1px, 1px);
    }
    60% {
        transform: translate(-1px, 0);
    }
    80% {
        transform: translate(1px, -1px);
    }
    100% {
        transform: translate(0, 1px);
    }
}

@keyframes glitchBottom {
    0% {
        transform: translate(0, 0);
    }
    20% {
        transform: translate(1px, 1px);
    }
    40% {
        transform: translate(-1px, -1px);
    }
    60% {
        transform: translate(1px, 0);
    }
    80% {
        transform: translate(-1px, 1px);
    }
    100% {
        transform: translate(0, -1px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSlow {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* About Section */

.about {
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.about-content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.about-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(255, 0, 85, 0.16), rgba(5, 5, 16, 0.98));
    border: 1px solid rgba(255, 0, 85, 0.35);
    box-shadow: 0 0 24px rgba(255, 0, 85, 0.25);
    transform-origin: center bottom;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.45);
}

.card-image-bg {
	height: 90px;
    background-size: cover;
    background-position: center;
    filter: saturate(1.1);
    opacity: 0.8;
}

.card-content {
    padding: 22px 20px 24px;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 5, 16, 0.9);
    color: var(--primary-color);
    box-shadow: 0 0 14px rgba(255, 0, 85, 0.6);
    margin-top: -20px;
    margin-bottom: 10px;
}

.about-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.about-stats {
    margin-top: 60px;
}

.stats-title {
    font-size: 26px;
    margin-bottom: 8px;
}

.stats-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 26px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.stat-card {
    position: relative;
    padding: 20px 18px;
    border-radius: 14px;
    background: radial-gradient(circle at top, rgba(255, 0, 85, 0.18), rgba(5, 5, 16, 0.95));
    border: 1px solid rgba(255, 0, 85, 0.4);
    box-shadow: 0 0 28px rgba(255, 0, 85, 0.35);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(255, 0, 85, 0.18), transparent 55%);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
}

.stat-value {
    display: block;
    margin-top: 6px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.06em;
}


/* CTA Section */

.cta-section {
    padding: 80px 20px 110px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(255, 0, 85, 0.22), rgba(5, 5, 16, 0.98));
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: repeating-linear-gradient(120deg, rgba(255, 0, 85, 0.03) 0, rgba(255, 0, 85, 0.03) 1px, transparent 1px, transparent 4px);
    opacity: 0.6;
    mix-blend-mode: screen;
    animation: gridMove 22s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 26px;
}

.team-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    margin-top: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}


/* Discord Card */

.discord-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 0, 85, 0.08) 100%);
    border: 2px solid rgba(255, 0, 85, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: inset 0 0 20px rgba(255, 0, 85, 0.05);
    display: flex;
    flex-direction: column;
}

.discord-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-strong), inset 0 0 20px rgba(255, 0, 85, 0.1);
    transform: translateY(-15px) scale(1.03);
}

.card-banner {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.card-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 16, 0.95) 100%);
}

.status-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 24px;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.status-indicator.online {
    filter: drop-shadow(0 2px 6px rgba(67, 181, 129, 0.6));
}

.status-indicator.idle {
    filter: drop-shadow(0 2px 6px rgba(250, 166, 26, 0.6));
}

.status-indicator.dnd {
    filter: drop-shadow(0 2px 6px rgba(240, 71, 71, 0.6));
}

.status-indicator.offline {
    filter: drop-shadow(0 2px 4px rgba(116, 127, 141, 0.5));
}

.card-body {
    padding: 30px;
    text-align: center;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.profile-image-container {
    position: relative;
    margin-top: -80px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    display: block;
    object-fit: cover;
    box-shadow: 0 0 25px var(--primary-color), 0 0 50px rgba(255, 0, 85, 0.4), inset 0 0 10px rgba(255, 0, 85, 0.2);
    background: var(--bg-card);
    transition: all 0.3s ease;
}

.discord-card:hover .profile-pic {
    box-shadow: 0 0 40px var(--primary-color), 0 0 80px rgba(255, 0, 85, 0.6);
}

.status-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--bg-card);
}

.status-dot.online {
    background-color: #43b581;
    box-shadow: 0 0 10px rgba(67, 181, 129, 0.6);
}

.status-dot.idle {
    background-color: #faa61a;
    box-shadow: 0 0 10px rgba(250, 166, 26, 0.5);
}

.status-dot.dnd {
    background-color: #f04747;
    box-shadow: 0 0 10px rgba(240, 71, 71, 0.5);
}

.status-dot.offline {
    background-color: #747f8d;
}

.member-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 5px 0 0 0;
}

.member-title {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.member-username {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.member-status {
    font-size: 12px;
    font-style: italic;
    color: var(--primary-color);
    margin: 5px 0;
    opacity: 0.8;
}

.member-joined {
    font-size: 11px;
    color: var(--text-secondary);
    margin: 5px 0;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
}

.member-socials a {
    font-size: 18px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-socials a:hover {
    transform: translateY(-3px) scale(1.2);
    text-shadow: 0 0 10px var(--primary-color);
}


/* Footer */

.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 0, 85, 0.2);
    padding: 60px 40px 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 24px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    text-shadow: 0 0 10px var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 0, 85, 0.2);
    padding-top: 30px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}


/* Cookie Banner */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 0, 85, 0.1) 100%);
    border-top: 2px solid var(--primary-color);
    padding: 25px 40px;
    z-index: 999;
    box-shadow: 0 -4px 30px rgba(255, 0, 85, 0.3);
    transform: translateY(200px);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-text p {
    color: var(--text-secondary);
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.cookie-btn.accept {
    background: var(--gradient-1);
    color: var(--text-primary);
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cookie-btn.decline:hover {
    background: var(--primary-color);
    color: var(--bg-darker);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading,
.error {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    font-size: 18px;
    border: 2px solid rgba(255, 0, 85, 0.3);
    border-radius: 10px;
    background: rgba(255, 0, 85, 0.05);
}

.error {
    border-color: #ff4444;
    color: #ff6666;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 36px;
    }
    .container {
        padding: 0 20px;
    }
    .hero-content {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
        gap: 40px;
    }
    .hero-text {
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
    }
    .about-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        padding: 0 20px;
    }
    .glitch {
        font-size: 46px;
    }
}