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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated particles background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Enhanced navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
}

.logo:hover {
    opacity: 0.8;
}

.bee-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
}

.invite-btn, .cta-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
    font-size: 1rem;
}

.invite-btn:hover, .cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.invite-btn:active, .cta-btn:active {
    transform: scale(0.98);
}

/* Hero section with glassmorphism */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
    padding: 2rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.subtitle-text {
    display: block;
    font-size: 0.4em;
    font-weight: 300;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced CTA button */
.cta-btn {
    position: relative;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn:hover .btn-glow {
    opacity: 0.3;
}

/* Floating bee animation */
.floating-bee {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    animation: float-bee 6s ease-in-out infinite;
}

.floating-img {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 20px 40px rgba(255, 215, 0, 0.3));
}

@keyframes float-bee {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-60%) rotate(5deg); }
    75% { transform: translateY(-40%) rotate(-5deg); }
}

.features {
    padding: 4rem 2rem;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #FFD700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced feature cards */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .card-glow {
    opacity: 1;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
}

.stats {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Enhanced stats */
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.8;
}

.team {
    padding: 4rem 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Enhanced team section */
.team-member {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.member-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-glow {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover .team-avatar {
    transform: scale(1.1);
    border-color: #FFD700;
}

.team-member h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.team-social {
    margin-top: 1rem;
}

.social-link {
    color: #FFD700;
    text-decoration: none;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    transform: translateY(-2px);
}

/* Legal pages styling */
.legal-section {
    min-height: 100vh;
    padding: 6rem 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-container {
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem auto;
}

.last-updated {
    text-align: center;
    color: #FFD700;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    color: #FFD700;
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.legal-footer {
    margin-top: 3rem;
    text-align: center;
}

.back-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #FFD700;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.back-link:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
}

/* FAQ specific styles */
.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #FFD700;
}

.faq-icon {
    font-size: 1.5rem;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.faq-answer.active {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.faq-answer code {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    color: #FFD700;
    font-family: 'Space Mono', monospace;
}

.faq-answer a {
    color: #FFD700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    transition: border-color 0.3s ease;
}

.faq-answer a:hover {
    border-color: #FFD700;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Footer updates */
footer {
    text-align: center;
    padding: 2rem;
    background: #000;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.footer-link {
    color: #FFD700;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .floating-bee {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .feature-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    nav {
        padding: 1rem;
    }
    
    .legal-container {
        padding: 2rem;
        margin: 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
    
    .invite-btn, .cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .social-link {
        margin: 0.25rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-icon {
        font-size: 1.2rem;
    }
    
    .faq-answer.active {
        padding: 0 1.2rem 1.2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    }
