/* BRUTALIST CHICKEN CHASERS WEBSITE */
/* Color Palette: Black, White, Red (#e60012), Yellow (#fff200) */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Arial Black', Arial, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.2;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

h1 {
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 0.8;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.9;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1;
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

p {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.3;
}

/* LAYOUT CONTAINERS */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVIGATION */
.navbar {
    background: #fff200;
    border-bottom: 8px solid #e60012;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 0 #000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo img {
    width: 50px;
    height: 50px;
    border: 4px solid #000;
    background: #fff;
}

.nav-logo span {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 15px 25px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 4px solid #000;
    border-right: none;
    transition: all 0.1s ease;
}

.nav-link:last-child {
    border-right: 4px solid #000;
}

.nav-link:hover,
.nav-link.active {
    background: #e60012;
    color: #fff;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 30px;
    height: 4px;
    background: #000;
    transition: 0.1s;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 20px 30px;
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    border: 4px solid #000;
    cursor: pointer;
    transition: all 0.1s ease;
    background: #fff;
    color: #000;
}

.btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #000;
}

.btn-primary {
    background: #e60012;
    color: #fff;
}

.btn-secondary {
    background: #fff200;
    color: #000;
}

.btn-large {
    padding: 25px 40px;
    font-size: 1.3rem;
}

.btn-small {
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* HERO SECTION */
.hero {
    background: #fff200;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    border-bottom: 8px solid #000;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    color: #000;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 #e60012;
}

.hero-tagline {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #e60012;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-description {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border: 8px solid #000;
    background: #fff;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

.page-header {
    background: #e60012;
    padding: 150px 0 80px;
    text-align: center;
    border-bottom: 8px solid #000;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 #000;
}

.page-header p {
    color: #fff200;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
}

/* GAME INTRO */
.game-intro {
    background: #fff;
    color: #000;
    text-align: center;
    border-bottom: 8px solid #000;
}

.game-intro h2 {
    margin-bottom: 30px;
    text-shadow: 4px 4px 0 #fff200;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* FEATURES GRID */
.features {
    background: #000;
    border-bottom: 8px solid #e60012;
}

.features h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff200;
    text-shadow: 4px 4px 0 #e60012;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #fff;
    color: #000;
    padding: 40px;
    border: 8px solid #000;
    text-align: center;
}

.feature-card:nth-child(2) {
    background: #fff200;
}

.feature-card:nth-child(3) {
    background: #e60012;
    color: #fff;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* SCREENSHOTS */
.screenshots,
.screenshots-gallery {
    background: #fff200;
    border-bottom: 8px solid #000;
}

.screenshots h2,
.screenshots-gallery h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    text-shadow: 4px 4px 0 #e60012;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.screenshot-item,
.media-item {
    position: relative;
    overflow: hidden;
    border: 8px solid #000;
    background: #fff;
}

.screenshot-item img,
.media-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    text-align: center;
    padding: 20px;
}

.media-item:hover .media-overlay {
    opacity: 1;
}

.media-overlay h3 {
    margin-bottom: 20px;
    color: #fff200;
}

.media-actions {
    display: flex;
    gap: 10px;
}

/* SYSTEM REQUIREMENTS */
.system-requirements {
    background: #000;
    border-bottom: 8px solid #fff200;
}

.system-requirements h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff200;
    text-shadow: 4px 4px 0 #e60012;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.requirements-card {
    background: #fff;
    color: #000;
    padding: 40px;
    border: 8px solid #e60012;
}

.requirements-card:nth-child(2) {
    background: #fff200;
}

.requirements-card h3 {
    margin-bottom: 30px;
    text-align: center;
    color: #e60012;
}

.requirements-card ul {
    list-style: none;
}

.requirements-card li {
    padding: 10px 0;
    border-bottom: 2px solid #000;
    font-weight: bold;
}

.requirements-card li:last-child {
    border-bottom: none;
}

/* TESTIMONIALS */
.testimonials {
    background: #e60012;
    border-bottom: 8px solid #000;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 4px 4px 0 #000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #fff;
    color: #000;
    padding: 40px;
    border: 8px solid #000;
    text-align: center;
}

.testimonial-card:nth-child(2) {
    background: #fff200;
}

.testimonial-card:nth-child(3) {
    background: #000;
    color: #fff;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
}

.testimonial-author strong {
    color: #e60012;
    font-weight: 900;
}

/* TRAILER */
.trailer {
    background: #000;
    text-align: center;
    border-bottom: 8px solid #fff200;
}

.trailer h2 {
    margin-bottom: 60px;
    color: #fff200;
    text-shadow: 4px 4px 0 #e60012;
}

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

.trailer-placeholder {
    background: #fff;
    color: #000;
    padding: 100px;
    border: 8px solid #e60012;
    text-align: center;
}

.trailer-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #e60012;
}

/* STEAM CTA */
.steam-cta {
    background: #fff200;
    text-align: center;
    border-bottom: 8px solid #000;
}

.cta-content h2 {
    margin-bottom: 20px;
    color: #000;
    text-shadow: 4px 4px 0 #e60012;
}

.cta-content p {
    margin-bottom: 40px;
    color: #000;
    font-size: 1.2rem;
}

/* HOW TO PLAY GUIDE */
.how-to-play-guide {
    background: #000;
    border-bottom: 8px solid #e60012;
}

.how-to-play-guide h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff200;
    text-shadow: 4px 4px 0 #e60012;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.guide-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: center;
}

.step-number {
    width: 100px;
    height: 100px;
    background: #e60012;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    border: 8px solid #fff200;
}

.step-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.step-text h3 {
    color: #fff200;
    margin-bottom: 20px;
}

.step-text p {
    color: #fff;
    margin-bottom: 30px;
}

.controls-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: #000;
    padding: 15px;
    border: 4px solid #fff200;
}

.control-item kbd {
    background: #000;
    color: #fff;
    padding: 8px 12px;
    border: 2px solid #e60012;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
}

.tips-box,
.throwing-mechanics,
.winning-strategies {
    background: #fff200;
    color: #000;
    padding: 30px;
    border: 4px solid #000;
    margin-top: 20px;
}

.tips-box h4,
.throwing-mechanics h4,
.winning-strategies h4 {
    margin-bottom: 15px;
    color: #e60012;
}

.tips-box ul,
.throwing-mechanics ul,
.winning-strategies ul {
    list-style: none;
}

.tips-box li,
.throwing-mechanics li,
.winning-strategies li {
    padding: 8px 0;
    border-bottom: 2px solid #000;
    font-weight: bold;
}

.tips-box li:last-child,
.throwing-mechanics li:last-child,
.winning-strategies li:last-child {
    border-bottom: none;
}

.step-image {
    border: 8px solid #fff200;
    background: #fff;
}

.step-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* MINI GAME */
.mini-game-section {
    background: #fff200;
    text-align: center;
    border-bottom: 8px solid #000;
}

.mini-game-section h2 {
    margin-bottom: 20px;
    color: #000;
    text-shadow: 4px 4px 0 #e60012;
}

.mini-game-section p {
    margin-bottom: 40px;
    color: #000;
}

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

#chickenGame {
    border: 8px solid #000;
    background: #fff;
    display: block;
    margin: 0 auto 20px;
}

.game-controls {
    background: #000;
    color: #fff;
    padding: 30px;
    border: 8px solid #e60012;
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* UNIQUE MECHANICS */
.unique-mechanics {
    background: #e60012;
    border-bottom: 8px solid #000;
}

.unique-mechanics h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 4px 4px 0 #000;
}

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

.mechanic-card {
    background: #fff;
    color: #000;
    padding: 40px;
    border: 8px solid #000;
    text-align: center;
}

.mechanic-card:nth-child(2) {
    background: #fff200;
}

.mechanic-card:nth-child(3) {
    background: #000;
    color: #fff;
}

.mechanic-card:nth-child(4) {
    background: #fff200;
}

.mechanic-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #e60012;
}

.mechanic-card:nth-child(3) i {
    color: #fff200;
}

/* MULTIPLAYER TIPS */
.multiplayer-tips {
    background: #fff200;
    border-bottom: 8px solid #000;
}

.multiplayer-tips h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    text-shadow: 4px 4px 0 #e60012;
}

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

.tip-card {
    background: #000;
    color: #fff;
    padding: 40px;
    border: 8px solid #e60012;
    text-align: center;
}

.tip-card:nth-child(2) {
    background: #e60012;
}

.tip-card:nth-child(3) {
    background: #fff;
    color: #000;
}

.tip-card:nth-child(4) {
    background: #000;
}

.tip-card h3 {
    margin-bottom: 20px;
    color: #fff200;
}

.tip-card:nth-child(3) h3 {
    color: #e60012;
}

.tip-card i {
    color: #fff200;
    margin-right: 10px;
}

.tip-card:nth-child(3) i {
    color: #e60012;
}

/* COMMUNITY PLATFORMS */
.community-platforms {
    background: #000;
    border-bottom: 8px solid #fff200;
}

.community-platforms h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff200;
    text-shadow: 4px 4px 0 #e60012;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.platform-card {
    padding: 40px;
    border: 8px solid #000;
    text-align: center;
}

.platform-card.discord {
    background: #fff;
    color: #000;
}

.platform-card.steam {
    background: #fff200;
    color: #000;
}

.platform-card.reddit {
    background: #e60012;
    color: #fff;
}

.platform-card.twitter {
    background: #fff;
    color: #000;
}

.platform-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.platform-card.discord .platform-icon {
    color: #5865F2;
}

.platform-card.steam .platform-icon {
    color: #000;
}

.platform-card.reddit .platform-icon {
    color: #fff;
}

.platform-card.twitter .platform-icon {
    color: #1DA1F2;
}

.platform-content h3 {
    margin-bottom: 20px;
}

.platform-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    font-weight: bold;
}

.platform-stats .online {
    color: #00ff00;
}

/* COMMUNITY HIGHLIGHTS */
.community-highlights {
    background: #fff200;
    border-bottom: 8px solid #000;
}

.community-highlights h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    text-shadow: 4px 4px 0 #e60012;
}

.highlight-section {
    margin-bottom: 80px;
}

.highlight-section h3 {
    margin-bottom: 40px;
    color: #e60012;
    text-align: center;
}

.fan-art-grid,
.memes-grid,
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.fan-art-item,
.meme-item,
.video-item {
    background: #000;
    border: 8px solid #e60012;
    overflow: hidden;
}

.fan-art-item img,
.meme-item img,
.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fan-art-info,
.meme-caption,
.video-info {
    padding: 20px;
    color: #fff;
}

.fan-art-info h4,
.video-info h4 {
    color: #fff200;
    margin-bottom: 10px;
}

.video-thumbnail {
    position: relative;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #e60012;
    border: 4px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.video-stats {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.section-cta p {
    margin-bottom: 20px;
    color: #000;
    font-size: 1.1rem;
}

/* COMMUNITY EVENTS */
.community-events {
    background: #000;
    border-bottom: 8px solid #e60012;
}

.community-events h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff200;
    text-shadow: 4px 4px 0 #e60012;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.event-card {
    background: #fff;
    color: #000;
    border: 8px solid #fff200;
    display: grid;
    grid-template-columns: 100px 1fr;
    overflow: hidden;
}

.event-card:nth-child(2) {
    background: #fff200;
}

.event-card:nth-child(3) {
    background: #e60012;
    color: #fff;
}

.event-date {
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.event-card:nth-child(3) .event-date {
    background: #fff;
    color: #000;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    margin-bottom: 15px;
    color: #e60012;
}

.event-card:nth-child(3) .event-content h3 {
    color: #fff;
}

.event-details {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-weight: bold;
    font-size: 0.9rem;
}

/* COMMUNITY GUIDELINES */
.community-guidelines {
    background: #e60012;
    border-bottom: 8px solid #000;
}

.community-guidelines h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 4px 4px 0 #000;
}

.guidelines-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guidelines-intro {
    text-align: center;
    margin-bottom: 60px;
}

.guidelines-intro p {
    color: #fff;
    font-size: 1.2rem;
}

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

.guideline-item {
    background: #fff;
    color: #000;
    padding: 40px;
    border: 8px solid #000;
    text-align: center;
}

.guideline-item:nth-child(2) {
    background: #fff200;
}

.guideline-item:nth-child(3) {
    background: #000;
    color: #fff;
}

.guideline-item:nth-child(4) {
    background: #fff200;
}

.guideline-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #e60012;
}

.guideline-item:nth-child(3) i {
    color: #fff200;
}

.guideline-item h3 {
    margin-bottom: 20px;
}

/* CONTACT FORM */
.contact-info {
    background: #fff200;
    border-bottom: 8px solid #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.contact-card {
    background: #000;
    color: #fff;
    padding: 40px;
    border: 8px solid #e60012;
    text-align: center;
}

.contact-card:nth-child(2) {
    background: #e60012;
}

.contact-card:nth-child(3) {
    background: #fff;
    color: #000;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff200;
}

.contact-card:nth-child(3) .contact-icon {
    color: #e60012;
}

.contact-link {
    color: #fff200;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #fff200;
}

.contact-card:nth-child(3) .contact-link {
    color: #e60012;
    border-bottom-color: #e60012;
}

.contact-form-section {
    background: #000;
    border-bottom: 8px solid #e60012;
}

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

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h2 {
    color: #fff200;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 #e60012;
}

.form-header p {
    color: #fff;
}

.contact-form {
    background: #fff;
    color: #000;
    padding: 40px;
    border: 8px solid #fff200;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 4px solid #000;
    background: #fff;
    color: #000;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e60012;
    background: #fff200;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 4px solid #000;
    background: #fff;
    flex-shrink: 0;
    margin-top: 2px;
}

/* FAQ */
.faq-section {
    background: #fff200;
    border-bottom: 8px solid #000;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    text-shadow: 4px 4px 0 #e60012;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.faq-item {
    background: #000;
    color: #fff;
    padding: 30px;
    border: 8px solid #e60012;
}

.faq-item:nth-child(even) {
    background: #fff;
    color: #000;
    border-color: #000;
}

.faq-item h3 {
    color: #fff200;
    margin-bottom: 20px;
}

.faq-item:nth-child(even) h3 {
    color: #e60012;
}

.faq-item a {
    color: #fff200;
    font-weight: bold;
}

.faq-item:nth-child(even) a {
    color: #e60012;
}

/* RESPONSE NOTICE */
.response-notice {
    background: #e60012;
    border-bottom: 8px solid #000;
}

.notice-card {
    background: #fff;
    color: #000;
    padding: 40px;
    border: 8px solid #000;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.notice-card i {
    font-size: 3rem;
    color: #e60012;
    margin-bottom: 20px;
}

.notice-card h3 {
    margin-bottom: 20px;
    color: #e60012;
}

/* MEDIA SECTIONS */
.press-kit {
    background: #000;
    border-bottom: 8px solid #fff200;
}

.press-kit-card {
    max-width: 1000px;
    margin: 0 auto;
}

.press-kit-content {
    background: #fff;
    color: #000;
    padding: 60px;
    border: 8px solid #e60012;
    text-align: center;
}

.press-kit-content h2 {
    margin-bottom: 30px;
    color: #e60012;
}

.press-kit-includes {
    text-align: left;
    margin: 40px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.press-kit-includes h3 {
    margin-bottom: 20px;
    color: #e60012;
}

.press-kit-includes ul {
    list-style: none;
}

.press-kit-includes li {
    padding: 8px 0;
    border-bottom: 2px solid #000;
    font-weight: bold;
}

.press-kit-includes li:last-child {
    border-bottom: none;
}

/* KEY ART */
.key-art {
    background: #fff200;
    border-bottom: 8px solid #000;
}

.key-art h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    text-shadow: 4px 4px 0 #e60012;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* LOGOS */
.logos {
    background: #000;
    border-bottom: 8px solid #e60012;
}

.logos h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff200;
    text-shadow: 4px 4px 0 #e60012;
}

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

.logo-item {
    background: #fff;
    border: 8px solid #fff200;
    overflow: hidden;
}

.logo-preview {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
}

.logo-preview.logo-dark {
    background: #000;
}

.logo-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-info {
    padding: 30px;
    background: #fff;
    color: #000;
    text-align: center;
}

.logo-info h3 {
    margin-bottom: 10px;
    color: #e60012;
}

.logo-downloads {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

/* USAGE GUIDELINES */
.usage-guidelines {
    background: #e60012;
    border-bottom: 8px solid #000;
}

.usage-guidelines h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 4px 4px 0 #000;
}

.guidelines-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.guideline-section {
    background: #fff;
    color: #000;
    padding: 40px;
    border: 8px solid #000;
}

.guideline-section:nth-child(2) {
    background: #fff200;
}

.guideline-section h3 {
    margin-bottom: 20px;
    color: #e60012;
}

.guideline-section i {
    margin-right: 10px;
    color: #e60012;
}

.guideline-section ul {
    list-style: none;
}

.guideline-section li {
    padding: 8px 0;
    border-bottom: 2px solid #000;
    font-weight: bold;
}

.guideline-section li:last-child {
    border-bottom: none;
}

.contact-note {
    background: #fff;
    color: #000;
    padding: 30px;
    border: 8px solid #000;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-note a {
    color: #e60012;
    font-weight: bold;
}

/* FOOTER */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
    border-top: 8px solid #e60012;
}

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

.footer-section h3 {
    color: #fff200;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #fff200;
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color 0.1s ease;
}

.footer-section ul li a:hover {
    border-bottom-color: #e60012;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #e60012;
    color: #fff;
    text-decoration: none;
    border: 4px solid #fff200;
    font-size: 1.5rem;
    transition: all 0.1s ease;
}

.social-links a:hover {
    background: #fff200;
    color: #000;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #e60012;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 4px solid #e60012;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000;
        flex-direction: column;
        border-top: 4px solid #e60012;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        border-right: 4px solid #000;
        border-bottom: none;
    }

    .nav-link:last-child {
        border-bottom: 4px solid #000;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .step-content {
        grid-template-columns: 1fr;
    }

    .guide-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .platform-stats {
        flex-direction: column;
        gap: 10px;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-date {
        padding: 20px;
        flex-direction: row;
        gap: 10px;
    }

    h1 {
        font-size: clamp(2rem, 6vw, 4rem);
    }

    h2 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .btn {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 20px 25px;
        font-size: 1.1rem;
    }

    section {
        padding: 60px 0;
    }

    .features-grid,
    .platforms-grid,
    .contact-grid,
    .requirements-grid,
    .testimonials-grid,
    .mechanics-grid,
    .tips-grid,
    .events-grid,
    .guidelines-grid,
    .faq-grid,
    .media-grid,
    .logos-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-grid,
    .fan-art-grid,
    .memes-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ADDITIONAL BRUTALIST ELEMENTS */
.glitch-text {
    position: relative;
    color: #fff200;
    text-shadow: 2px 2px 0 #e60012, -2px -2px 0 #000;
}

.block-element {
    background: #000;
    border: 8px solid #fff200;
    transform: skew(-2deg);
}

.harsh-shadow {
    box-shadow: 8px 8px 0 #000;
}

.brutal-border {
    border: 8px solid #000;
}

/* ANIMATIONS */
@keyframes brutal-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse-animation {
    animation: brutal-pulse 2s infinite;
}

/* LEGAL PAGES STYLES */
.privacy-content,
.terms-content {
    background: #fff;
    color: #000;
    border-bottom: 8px solid #000;
}

.policy-document,
.terms-document {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border: 8px solid #000;
}

.policy-intro,
.terms-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: #fff200;
    border: 8px solid #000;
}

.policy-intro h2,
.terms-intro h2 {
    margin-bottom: 20px;
    color: #e60012;
}

.policy-section,
.terms-section {
    margin-bottom: 50px;
    padding: 40px;
    background: #fff;
    border: 4px solid #000;
}

.policy-section:nth-child(even),
.terms-section:nth-child(even) {
    background: #fff200;
}

.policy-section h3,
.terms-section h3 {
    margin-bottom: 25px;
    color: #e60012;
    border-bottom: 4px solid #000;
    padding-bottom: 10px;
}

.policy-subsection,
.terms-subsection {
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border: 4px solid #e60012;
}

.policy-subsection h4,
.terms-subsection h4 {
    margin-bottom: 15px;
    color: #e60012;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.policy-section ul,
.terms-section ul,
.policy-subsection ul,
.terms-subsection ul {
    list-style: none;
    margin: 20px 0;
}

.policy-section li,
.terms-section li,
.policy-subsection li,
.terms-subsection li {
    padding: 10px 0;
    border-bottom: 2px solid #000;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
}

.policy-section li:before,
.terms-section li:before,
.policy-subsection li:before,
.terms-subsection li:before {
    content: "■";
    position: absolute;
    left: 0;
    color: #e60012;
    font-weight: 900;
}

.policy-section li:last-child,
.terms-section li:last-child,
.policy-subsection li:last-child,
.terms-subsection li:last-child {
    border-bottom: none;
}

.contact-details {
    background: #000;
    color: #fff;
    padding: 30px;
    border: 8px solid #e60012;
    margin: 30px 0;
}

.contact-details p {
    margin-bottom: 15px;
}

.contact-details a {
    color: #fff200;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #fff200;
}

.contact-details a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.policy-footer,
.terms-footer {
    background: #e60012;
    color: #fff;
    padding: 40px;
    border: 8px solid #000;
    text-align: center;
    margin-top: 40px;
}

.policy-footer h3,
.terms-footer h3 {
    margin-bottom: 20px;
    color: #fff200;
}

.policy-footer ul,
.terms-footer ul {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
}

.policy-footer li,
.terms-footer li {
    color: #fff;
    border-bottom-color: #fff200;
}

.policy-footer li:before,
.terms-footer li:before {
    color: #fff200;
}

/* PRINT STYLES */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .btn {
        border: 2px solid #000;
    }
}