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

body {
    font-family: 'Space Mono', monospace;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

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

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4ecdc4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ecdc4;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Community Link Special Styling */
.community-link {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.community-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
    color: #ffffff !important;
}

.community-link::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/space-background.png') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.floating-logos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.floating-logo {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-logo.amazon {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-logo.meta {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.floating-logo.openai {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.floating-logo.netflix {
    top: 70%;
    right: 25%;
    animation-delay: 3s;
}

.floating-logo.google {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.floating-logo.uber {
    top: 80%;
    left: 60%;
    animation-delay: 5s;
}

.floating-logo.spotify {
    top: 15%;
    right: 40%;
    animation-delay: 6s;
}

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

.tagline {
    font-size: 18px;
    color: #ff6b6b;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-spell {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.logo-letter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.logo-letter:hover {
    transform: scale(1.1);
}

.logo-letter img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.logo-letter span {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    margin-bottom: 40px;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
}

.sus-meter {
    margin-bottom: 40px;
}

.meter-label {
    font-size: 18px;
    margin-bottom: 15px;
    color: #4ecdc4;
    font-weight: 700;
}

.meter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.meter-bar {
    width: 300px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 2px solid #4ecdc4;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ecdc4, #ff6b6b);
    border-radius: 8px;
    width: 69%;
    animation: meterPulse 2s ease-in-out infinite;
    position: relative;
}

.meter-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s linear infinite;
}

.meter-value {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    color: #ff6b6b;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
    background: #4ecdc4;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.imposter-character {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 5;
    animation: bounce 3s ease-in-out infinite;
}

.imposter-character img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 107, 107, 0.5));
}

/* Lore Section */
.lore {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lore-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tweet-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.tweet-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tweet-author {
    font-weight: 700;
    color: #4ecdc4;
}

.tweet-date {
    color: #888;
    font-size: 14px;
}

.tweet-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.tweet-image img {
    width: 100%;
    height: auto;
}

.tweet-text {
    font-style: italic;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}

/* Tweet Link Styling */
.tweet-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.tweet-link:hover .tweet-container {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.3);
    border-color: #4ecdc4;
}

.tweet-link:hover .tweet-author {
    color: #ffffff;
}

.lore-story {
    padding: 40px;
}

.story-text p {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.revelation {
    font-size: 24px !important;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ff6b6b;
}

.highlight {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 1.2em;
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 18px;
    color: #4ecdc4;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-value {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
}

.card-subtitle {
    color: #888;
    font-size: 14px;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 16px;
    color: #4ecdc4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #888;
    margin-bottom: 30px;
    font-size: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Community Highlight in Footer */
.community-highlight {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4) !important;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.community-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    color: #ffffff !important;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

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

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

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .logo-spell {
        gap: 10px;
    }
    
    .logo-letter img {
        width: 40px;
        height: 40px;
    }
    
    .logo-letter span {
        font-size: 18px;
    }
    
    .lore-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .imposter-character {
        bottom: 20px;
        right: 20px;
    }
    
    .imposter-character img {
        width: 100px;
    }
    
    .meter-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .meter-bar {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 0 15px;
    }
    
    .logo-spell {
        gap: 8px;
    }
    
    .logo-letter img {
        width: 35px;
        height: 35px;
    }
    
    .logo-letter span {
        font-size: 16px;
    }
    
    .meter-bar {
        width: 200px;
    }
}

