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

:root {
    --yellow: #FFD700;
    --yellow-light: #FFEB3B;
    --yellow-dark: #FFC107;
    --dark: #141414;
    --dark-lighter: #1f1f1f;
    --dark-card: #252525;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --border: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] {
    --yellow: #FFA500;
    --yellow-light: #FFB52E;
    --yellow-dark: #FF8C00;
    --dark: #FAFAFA;
    --dark-lighter: #FFFFFF;
    --dark-card: #FFFFFF;
    --text: #1A1A1A;
    --text-muted: #6B7280;
    --border: rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    user-select: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.2rem;
    user-select: none;
}

[data-theme="light"] .logo-icon {
    color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(255, 152, 0, 0.2);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
    user-select: none;
}

.nav-link:hover {
    color: var(--text);
}

.join-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--yellow);
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    user-select: none;
}

[data-theme="light"] .join-btn {
    color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(255, 152, 0, 0.2);
}

.join-btn:hover {
    background: var(--yellow-light);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ambient-light {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 800px 800px at 20% 40%, rgba(255, 215, 0, 0.015), transparent),
        radial-gradient(ellipse 600px 600px at 80% 60%, rgba(255, 235, 59, 0.015), transparent),
        radial-gradient(ellipse 1000px 1000px at 50% 50%, rgba(255, 215, 0, 0.01), transparent);
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--yellow);
    margin-bottom: 2rem;
    user-select: none;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--yellow);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--yellow);
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    user-select: none;
}

[data-theme="light"] .btn-primary {
    color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(255, 152, 0, 0.2);
}

.btn-primary:hover {
    background: var(--yellow-light);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    user-select: none;
}

[data-theme="light"] .btn-secondary {
    border: 2px solid var(--yellow);
    color: var(--yellow-dark);
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: var(--yellow-dark);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
    font-family: 'Space Grotesk', sans-serif;
    user-select: none;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    user-select: none;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--dark-lighter);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-main p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-muted);
}

.values {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    font-size: 2rem;
    line-height: 1;
    user-select: none;
}

.value-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.visual-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.visual-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 235, 59, 0.1) 0%, transparent 50%);
}

.visual-content {
    position: relative;
    z-index: 1;
}

.visual-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.visual-content p {
    color: var(--text-muted);
}

/* Community Section */
.community {
    padding: 6rem 0;
}

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

.feature {
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

[data-theme="light"] .feature {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .feature:hover {
    box-shadow: 0 8px 16px rgba(255, 152, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
}

.feature:hover {
    background: var(--dark-card);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    user-select: none;
}

[data-theme="light"] .feature-icon {
    background: rgba(255, 165, 0, 0.12);
}

.feature-icon span {
    font-size: 2rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Events Section */
.events {
    padding: 6rem 0;
    background: var(--dark-lighter);
}

[data-theme="light"] .events {
    background: #F9FAFB;
}

.events-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.event-highlight {
    background: var(--dark-card);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
}

.event-tag {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--yellow);
    color: var(--dark);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    user-select: none;
}

.event-highlight h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.event-highlight p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.event-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

[data-theme="light"] .event-card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .event-card:hover {
    box-shadow: 0 8px 16px rgba(255, 152, 0, 0.15);
}

.event-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.event-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    user-select: none;
}

.event-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.event-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--dark);
}

[data-theme="light"] .cta {
    background: linear-gradient(to bottom, var(--dark-lighter), rgba(255, 165, 0, 0.05));
}

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

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--yellow);
    color: var(--dark);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    user-select: none;
}

[data-theme="light"] .btn-large {
    color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(255, 152, 0, 0.2);
}

.btn-large:hover {
    background: var(--yellow-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

[data-theme="light"] .loading-screen {
    background: var(--dark);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-icon {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.loader-text {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
}

.theme-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--yellow);
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: var(--yellow);
}

.sun-icon, .moon-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, transform 0.3s;
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);
}

[data-theme="light"] .sun-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);
}

[data-theme="light"] .moon-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg);
}


/* Enhanced Feature Cards */
.feature {
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(255, 215, 0, 0.2);
}

.feature-icon {
    transition: all 0.3s;
}

/* Enhanced Event Cards */
.event-card {
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.event-card:hover .event-emoji {
    animation: bounce 0.6s ease;
}

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

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--dark);
}

[data-theme="light"] .testimonials {
    background: var(--dark-lighter);
}

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

.testimonial-card {
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

[data-theme="light"] .testimonial-card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--yellow);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: var(--text-muted);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

[data-theme="light"] .author-avatar {
    color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(255, 152, 0, 0.2);
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--dark-lighter);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

[data-theme="light"] .faq-item {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

[data-theme="light"] .faq-question:hover {
    background: rgba(255, 165, 0, 0.08);
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Discord Section */
.discord-section {
    padding: 6rem 0;
    background: var(--dark);
}

[data-theme="light"] .discord-section {
    background: var(--dark-lighter);
}

.discord-widget-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

/* Custom Discord Widget */
.custom-discord-widget {
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .custom-discord-widget {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--dark-card);
    border-bottom: 1px solid var(--border);
}

.server-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.server-icon {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

[data-theme="light"] .server-icon {
    color: #FFFFFF;
}

.server-name {
    font-size: 1.25rem;
    margin: 0 0 0.25rem 0;
}

.server-stats {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.online-count {
    color: #43B581;
    font-weight: 600;
}

.widget-join-btn {
    padding: 0.5rem 1.25rem;
    background: var(--yellow);
    color: var(--dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}

[data-theme="light"] .widget-join-btn {
    color: #FFFFFF;
}

.widget-join-btn:hover {
    background: var(--yellow-light);
    transform: translateY(-1px);
}

.widget-members {
    padding: 1.5rem;
    min-height: 400px;
    max-height: 500px;
    overflow-y: auto;
}

.widget-members::-webkit-scrollbar {
    width: 8px;
}

.widget-members::-webkit-scrollbar-track {
    background: var(--dark);
}

.widget-members::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.widget-members::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.members-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--text-muted);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.members-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--dark);
    border-radius: 8px;
    transition: all 0.2s;
}

[data-theme="light"] .member-item {
    background: rgba(0, 0, 0, 0.03);
}

.member-item:hover {
    background: var(--dark-card);
    transform: translateX(4px);
}

[data-theme="light"] .member-item:hover {
    background: rgba(255, 165, 0, 0.08);
}

.member-avatar {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
}

[data-theme="light"] .member-avatar {
    color: #FFFFFF;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--dark);
    z-index: 1;
}

[data-theme="light"] .member-status {
    border-color: var(--dark-lighter);
}

.member-status.online {
    background: #43B581;
}

.member-status.idle {
    background: #FAA61A;
}

.member-status.dnd {
    background: #F04747;
}

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.member-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.member-game {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.member-activity {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.activity-icon {
    font-size: 0.875rem;
}

.member-voice {
    color: #43B581;
    font-weight: 500;
    font-size: 0.75rem;
}

.voice-indicator {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background: #43B581;
    border-radius: 50%;
    border: 2px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

[data-theme="light"] .voice-indicator {
    border-color: var(--dark-lighter);
}

.voice-indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3z"/><path d="M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z"/></svg>') center/contain no-repeat;
}

.discord-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.discord-info p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.discord-stats {
    display: flex;
    gap: 3rem;
}

.discord-stat {
    text-align: center;
}

.discord-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow);
    font-family: 'Space Grotesk', sans-serif;
}

.discord-stat-label {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--yellow);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

[data-theme="light"] .scroll-to-top {
    color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(255, 152, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .events-showcase {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .theme-toggle {
        width: 36px;
        height: 36px;
    }
    
    .join-btn span {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .discord-widget-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .custom-discord-widget {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .discord-stats {
        justify-content: center;
    }
}

/* Mobile Menu Styles */
.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .discord-stat-number {
        font-size: 2rem;
    }
}