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

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-tulip: #d948ec;
    --accent-daisy: #fbdb24;
    --bg-dark: #0a0a0f;
    --bg-card: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
    font-family:  'Roboto', sans-serif;
    background-color:  var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

. nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top:  0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%),
                radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

. hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color:  transparent;
    background-clip:  text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position:  0% 50%; }
    50% { background-position:  100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-tagline {
    font-size:  clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.highlight {
    color: var(--accent-tulip);
    font-weight: 700;
}

.highlight:last-of-type {
    color: var(--accent-daisy);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-youtube {
    background: #ff0000;
    color:  white;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.btn-twitch {
    background:  #9146ff;
    color: white;
}

.btn-twitch:hover {
    background: #7730dd;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(145, 70, 255, 0.3);
}

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

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

.mouse {
    width: 30px;
    height: 50px;
    border:  2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform:  translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity:  0; transform: translateX(-50%) translateY(15px); }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

. section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    line-height:  1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns:  repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 95%;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    text-align:  center;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.team-card-icon {
    font-size: 4rem;
    margin-bottom:  1rem;
    filter: drop-shadow(0 5px 15px rgba(236, 72, 153, 0.5));
}

.team-card-icon img {
    width: 80% !important;
}

.leo-icon {
    filter: drop-shadow(0 5px 15px rgba(170, 72, 236, 0.5));
}

.tulip-icon {
    filter: drop-shadow(0 5px 15px rgba(236, 72, 153, 0.5));
}

.daisy-icon {
    filter:  drop-shadow(0 5px 15px rgba(251, 191, 36, 0.5));
}

.team-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom:  0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Schedule Section */
.schedule {
    background: var(--bg-card);
}

.schedule-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 3rem;
    text-align:  center;
    border: 2px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.schedule-icon {
    font-size: 4rem;
    margin-bottom:  1rem;
}

.schedule-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom:  1.5rem;
}

.schedule-days {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.day-badge {
    padding: 0.8rem 1.5rem;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid transparent;
}

.day-badge.active {
    background: var(--gradient-1);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.schedule-time {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.time-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

.time-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--text-secondary) !important;
}

.timezone {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

. schedule-note {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Socials Section */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    text-align:  center;
    text-decoration: none;
    color: var(--text-primary);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-card svg {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.social-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

. social-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.social-link-text {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: auto;
}

.youtube-card {
    border-color: rgba(255, 0, 0, 0.3);
}

.youtube-card:hover {
    border-color: #ff0000;
    transform:  translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.youtube-card: hover svg {
    transform: scale(1.1);
    color: #ff0000;
}

.twitch-card {
    border-color: rgba(145, 70, 255, 0.3);
}

.twitch-card:hover {
    border-color: #9146ff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(145, 70, 255, 0.3);
}

.twitch-card:hover svg {
    transform: scale(1.1);
    color: #9146ff;
}

/* Footer */
. footer {
    background: var(--bg-card);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

. footer-tagline {
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding-top: 100px;
    }

    section {
        padding: 4rem 0;
    }

    .team-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .schedule-card {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    . team-card,
    .social-card {
        padding: 2rem;
    }
}

.btn-twitter {
    background:  #46bbff;
    color: white;
}

.btn-twitter:hover {
    background: #307bdd;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(70, 212, 255, 0.3);
}

.btn-discord {
    background:  #4671ff;
    color: white;
}

.btn-discord:hover {
    background: #303cdd;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(70, 119, 255, 0.3);
}

.btn-videos {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.btn-videos:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.hero-text {
    padding-bottom: 4.5vh;
}

.hero-title {
    display: flex;
    justify-content: center;
}

.hero-title img {
    width: clamp(280px, 85vw, 1100px);
    max-width: 100%;
    height: auto;
}