/* ===== GENERAL RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.7;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: #111111;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: #4ecdc4;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4ecdc4;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #4ecdc4;
    margin-bottom: 30px;
    font-weight: 700;
}

.tagline {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4ecdc4;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #3db3ab;
    transform: translateY(-2px);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 40px;
    text-align: center;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: #111111;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #c0c0c0;
}

.about-content strong {
    color: #4ecdc4;
}

/* ===== DATAECONOMICS SECTION ===== */
.dataeconomics {
    background-color: #0a0a0a;
}

.dataeconomics-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #c0c0c0;
}

.dataeconomics-content strong {
    color: #4ecdc4;
}

/* ===== VIBE CHECK SECTION ===== */
.vibecheck {
    background-color: #111111;
}

/* ===== TRIBEGAMES SECTION ===== */
.tribegames {
    background-color: #0a0a0a;
}

.tribegames-content .intro {
    text-align: center;
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #4ecdc4;
}

.game-card h3 {
    font-size: 1.8rem;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.game-tagline {
    font-size: 1rem;
    color: #4ecdc4;
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.8;
}

.game-description {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 100px;
}

.game-status {
    margin-bottom: 20px;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.coming-soon {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.status-badge.in-development {
    background-color: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    border: 1px solid #4ecdc4;
}

.status-badge.idea {
    background-color: rgba(156, 39, 176, 0.2);
    color: #ce93d8;
    border: 1px solid #ce93d8;
}

.game-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4ecdc4;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.game-button:hover {
    background-color: #3db3ab;
}

.game-button.disabled {
    background-color: #2a2a3e;
    color: #666;
    cursor: not-allowed;
}

.game-button.disabled:hover {
    background-color: #2a2a3e;
    transform: none;
}

.future-card {
    border: 2px dashed #333;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.tribegames-vision {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #4ecdc4;
}

.tribegames-vision h3 {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.tribegames-vision p {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.tribegames-vision strong {
    color: #4ecdc4;
}

/* ===== VIBE CHECK SECTION ===== */
.vibecheck {
    background-color: #111111;
}

.vibecheck-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #c0c0c0;
    text-align: center;
}

.vibe-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.vibe-list li {
    background-color: #1a1a2e;
    padding: 15px 25px;
    border-radius: 5px;
    border-left: 4px solid #4ecdc4;
    font-weight: 500;
}

/* ===== SCHEDULE SECTION ===== */
.schedule {
    background-color: #0a0a0a;
}

.schedule-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stream-day {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.stream-day h3 {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.stream-day .time {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.stream-day .description {
    font-size: 0.95rem;
    color: #a0a0a0;
}

.stream-links {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.stream-links h4 {
    margin-bottom: 15px;
    color: #e0e0e0;
}

.stream-button {
    display: inline-block;
    padding: 12px 30px;
    margin: 5px 10px;
    background-color: #4ecdc4;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.stream-button:hover {
    background-color: #3db3ab;
    transform: translateY(-2px);
}

/* ===== VISION SECTION ===== */
.vision {
    background-color: #111111;
}

.vision-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 40px;
}

.vision-pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.pillar {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    max-width: 450px;
}

.pillar h3 {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.pillar p {
    color: #a0a0a0;
}

.vision-statement {
    text-align: center;
    font-size: 1.2rem;
    color: #e0e0e0;
    background-color: #1a1a2e;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #4ecdc4;
}

/* ===== RICHARD SECTION ===== */
.richard {
    background-color: #0a0a0a;
}

.richard-content {
    max-width: 800px;
    margin: 0 auto;
}

.richard-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #c0c0c0;
}

.richard-content strong {
    color: #4ecdc4;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: #111111;
}

.contact-content {
    text-align: center;
}

.contact-content > p {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-info a {
    color: #4ecdc4;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.cta-text {
    font-size: 1.3rem;
    color: #e0e0e0;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0a0a0a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer p {
    color: #707070;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #4ecdc4;
    font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide nav on mobile - can add hamburger menu later */
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-description {
        min-height: auto;
    }
    
    .stream-day {
        min-width: 100%;
    }
    
    .pillar {
        min-width: 100%;
    }
    
    .vibe-list {
        flex-direction: column;
        align-items: center;
    }
    
    .vibe-list li {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .cta-button, .stream-button {
        padding: 12px 25px;
    }
}


/* ===== COMMUNITY SECTION ===== */
 .community {
 background-color: #111111;
 }
 .community-content .intro {
 text-align: center;
 font-size: 1.2rem;
 color: #c0c0c0;
 margin-bottom: 50px;
 max-width: 900px;
 margin-left: auto;
 margin-right: auto;
 }
 .community-features {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
 margin-bottom: 50px;
 }
 .community-features .feature {
 background-color: #1a1a2e;
 padding: 30px;
 border-radius: 10px;
 border-left: 4px solid #4ecdc4;
 }
 .community-features .feature h3 {
 font-size: 1.3rem;
 color: #4ecdc4;
 margin-bottom: 15px;
 }
 .community-features .feature p {
 color: #b0b0b0;
 line-height: 1.7;
 }
 .community-cta {
 text-align: center;
 }
.cta-subtext {
 margin-top: 15px;
 font-size: 1rem;
 color: #a0a0a0;
 font-style: italic;
 }