/*
  STYLE.CSS for THE CYNICS (BETA)
  This stylesheet uses the official brand guide.
*/

/* -- Brand Color Palette & Font Variables -- */
:root {
    --primary-yellow: #facc15;
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --leo-red: #c53030;
    --max-gray: #a0aec0;
    --font-primary: 'VT323', monospace;
}

/* -- General Reset & Body Styles -- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-black);
    color: var(--primary-white);
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    padding: 2rem 1rem;
}

/* -- Typography -- */
h1, h2, h3, p, a {
    font-family: var(--font-primary);
}

.logo-text {
    color: var(--primary-yellow);
    font-size: 5rem;
    letter-spacing: 4px;
    margin-bottom: 0;
    text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-block;
}

.beta-tag {
    font-size: 1.5rem;
    color: var(--primary-black);
    background-color: var(--primary-yellow);
    padding: 2px 8px;
    border: 2px solid var(--primary-white);
    position: absolute;
    top: 15px;
    right: -20px;
    transform: rotate(15deg);
}

.tagline {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 3rem;
    color: var(--primary-white);
}

.section-title {
    color: var(--primary-yellow);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    display: inline-block;
    border-bottom: 3px solid var(--primary-white);
    padding-bottom: 5px;
}

p {
    max-width: 700px;
    margin: 0 auto 1rem auto;
}

a {
    color: var(--primary-yellow);
    text-decoration: underline;
    transition: all 0.2s ease-in-out;
}

a:hover, a:focus {
    color: var(--primary-white);
    background-color: var(--primary-yellow);
    text-decoration: none;
}

/* -- Layout & Sections -- */
header, section {
    margin-bottom: 4rem;
}

main {
    max-width: 1200px;
    margin: 0 auto;
}

/* NEW: Two-Column Grid Layout */
.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Left column is smaller */
    gap: 2rem;
    align-items: center;
    text-align: left;
}

#interact-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* NEW: Action Buttons */
.action-button {
    display: block;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 15px 20px;
    font-size: 1.8rem;
    text-decoration: none;
    margin-top: 1rem;
    border: 3px solid var(--primary-white);
    text-align: center;
    box-shadow: 5px 5px 0px var(--primary-black);
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4);
    transition: all 0.1s ease-in-out;
}
.action-button:hover, .action-button:focus {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px var(--primary-black);
}

.stream-link {
    text-decoration: none;
    display: inline-block;
}
.stream-link .section-title {
    margin-bottom: 2rem;
    transition: all 0.2s ease-in-out;
}
.stream-link:hover .section-title {
    color: var(--primary-black);
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border: 4px solid var(--primary-white);
    box-shadow: 0 0 20px var(--primary-yellow);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Q&A Section Styles */
#faq-section, #future-section {
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
}
.qa-item {
    margin-bottom: 2rem;
    border-left: 3px solid var(--max-gray);
    padding-left: 1.5rem;
}
.qa-item h3 {
    font-size: 1.8rem;
    color: var(--primary-white);
    margin-bottom: 1rem;
}
.qa-item p {
    margin-left: 0;
}
.qa-item p strong {
    color: var(--primary-yellow);
}

/* Wobble Animation Keyframes */
@keyframes wobble {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(-2deg) translateY(-2px); }
    75% { transform: rotate(2deg) translateY(0); }
}

/* Animated Spectator Characters */
.spectator-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 999;
}

.character {
    position: absolute;
    bottom: -10px;
    width: 100px;
    height: auto;
    animation: wobble 5s ease-in-out infinite;
}

#max-char {
    left: 10%;
    transform: rotate(-5deg);
    animation-delay: 0.5s;
    animation-duration: 6s;
}

#leo-char {
    right: 10%;
    transform: rotate(5deg);
}

/* Footer */
footer {
    border-top: 2px solid var(--primary-white);
    padding-top: 2rem;
    margin-top: 4rem;
}

.social-links {
    margin-bottom: 1.5rem;
}
.social-links a {
    margin: 0 15px;
    font-size: 1.2rem;
    text-decoration: none;
    border-bottom: 2px dashed transparent;
}
.social-links a:hover, .social-links a:focus {
    background-color: transparent;
    border-bottom: 2px dashed var(--primary-yellow);
}

.footer-legal {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--max-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-statement, .copyright {
    color: var(--max-gray);
    font-size: 0.9rem;
    max-width: 600px;
    margin-bottom: 1rem;
}

.site-files a {
    font-size: 0.9rem;
    color: var(--max-gray);
}
.site-files a:hover {
    color: var(--primary-yellow);
    background: none;
}

/* -- Mobile Responsive Styles -- */
@media (max-width: 992px) {
    /* Switch to single column on tablets and smaller */
    .main-content-grid {
        grid-template-columns: 1fr;
    }
    #interact-column {
        text-align: center;
        margin-bottom: 3rem;
    }
    .section-title {
        text-align: center;
        width: 100%;
    }
    #faq-section, #future-section { 
        text-align: center;
    }
    .qa-item { 
        padding-left: 0; 
        border-left: none;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body { font-size: 18px; padding: 1rem; }
    .logo-text { font-size: 3rem; }
    .beta-tag { font-size: 1rem; top: 5px; right: -15px; }
    .tagline { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
    .social-links a { display: block; margin: 10px auto; }
    .character { display: none; }
}
