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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --accent-orange: #ff6b00;
    --accent-peach: #ffaa80;
    --accent-gold: #ffd700;
    --green: #00ff00;
    --red: #ff0000;
}

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

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.nav {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    padding: 0.5rem 1rem;
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.nav-btn:hover {
    background-color: var(--accent-orange);
    color: var(--bg-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Ticker Tape */
.ticker-wrapper {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid #333;
    overflow: hidden;
}

.ticker {
    display: flex;
    width: 100%;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0.75rem 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    border-right: 1px solid #333;
}

.ticker-item.butt {
    background-color: var(--accent-orange);
    color: var(--bg-primary);
    font-weight: 700;
}

.green {
    color: var(--green);
}

.red {
    color: var(--red);
}

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

/* Hero Section */
.hero {
    padding: 2rem;
    border-bottom: 1px solid #333;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.hero-left {
    border: 1px solid #333;
    padding: 1rem;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.meme-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.meme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(0,0,0,0.5);
}

.meme-text-top, .meme-text-bottom {
    font-family: 'Impact', sans-serif;
    font-size: 1.5rem;
    color: white;
    text-shadow: 2px 2px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000;
    text-align: center;
}

.hero-caption {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.hero-right {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.hero-text-block {
    padding: 1rem;
    border: 1px solid #333;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-side {
    padding: 1rem;
    border: 1px solid #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.butt-coin {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coin-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
    border-radius: 50%;
}

.coin-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

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

.mascot-container {
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.mascot-small {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.side-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.side-text {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 700;
}

/* Articles Section */
.articles {
    padding: 2rem;
    border-bottom: 1px solid #333;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.article-card {
    padding: 1.5rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: var(--accent-orange);
    background-color: var(--bg-secondary);
}

.article-source {
    font-size: 0.8rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.article-card h3 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Manifesto Section */
.manifesto {
    padding: 2rem;
    border-bottom: 1px solid #333;
}

.manifesto-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2rem;
}

.manifesto-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.manifesto-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.manifesto-text strong {
    color: var(--accent-orange);
}

.manifesto-center {
    padding: 1rem;
    border: 1px solid #333;
}

.article-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.article-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.manifesto-right {
    padding: 1rem;
    border: 1px solid #333;
    display: flex;
    align-items: center;
}

.search-butt {
    font-size: 0.9rem;
    line-height: 1.8;
}

.search-emphasis {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-top: 1rem;
}

/* Famous Works Section */
.famous-works {
    padding: 2rem;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid #333;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.work-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #333;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.work-card:hover {
    border-color: var(--accent-orange);
    background-color: var(--bg-tertiary);
}

.work-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.work-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.cta {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a0a00 100%);
    border-bottom: 1px solid #333;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background-color: var(--accent-orange);
    color: var(--bg-primary);
}

.cta-btn.primary:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.cta-btn.secondary {
    background-color: transparent;
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
}

.cta-btn.secondary:hover {
    background-color: var(--accent-orange);
    color: var(--bg-primary);
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--bg-secondary);
}

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

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-disclaimer {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}

.footer-copy {
    font-size: 0.8rem;
    color: #666;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        grid-template-columns: 1fr;
    }
    
    .manifesto-content {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
}

/* Glitch Effect */
.glitch {
    animation: glitch 0.5s infinite;
}

@keyframes glitch {
    0% {
        text-shadow: 2px 0 var(--accent-orange), -2px 0 cyan;
    }
    25% {
        text-shadow: -2px 0 var(--accent-orange), 2px 0 cyan;
    }
    50% {
        text-shadow: 2px 0 var(--accent-orange), -2px 0 cyan;
    }
    75% {
        text-shadow: -2px 0 var(--accent-orange), 2px 0 cyan;
    }
    100% {
        text-shadow: 2px 0 var(--accent-orange), -2px 0 cyan;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}
