/* Color Theme Variables - Yellow Dominant Theme */
:root {
    /* Primary Yellow Colors */
    --primary-yellow: #FFDA61;
    --primary-yellow-hover: #FFD13D;
    --primary-yellow-light: rgba(255, 218, 97, 0.15);
    --primary-yellow-medium: rgba(255, 218, 97, 0.3);
    --primary-yellow-strong: rgba(255, 218, 97, 0.5);
    --primary-yellow-bg: rgba(255, 218, 97, 0.08);
    
    /* Accent Yellow Colors */
    --yellow-bright: #FFF176;
    --yellow-dark: #F9A825;
    --yellow-muted: rgba(255, 218, 97, 0.7);
    
    /* Dark Colors for Contrast */
    --black-primary: #262626;
    --black-secondary: #1A1A1A;
    --black-tertiary: #0F0F0F;
    --black-soft: #333333;
    
    /* Text Colors */
    --text-primary: var(--black-primary);
    --text-secondary: var(--black-secondary);
    --text-on-yellow: var(--black-primary);
    --text-light: var(--primary-yellow);
    --text-muted: rgba(38, 38, 38, 0.7);
    
    /* Background Colors - Predominantly Yellow */
    --bg-primary: var(--primary-yellow);
    --bg-secondary: #FFF8E1;
    --bg-dark: var(--black-tertiary);
    --bg-card: rgba(255, 218, 97, 0.9);
    --bg-card-hover: rgba(255, 218, 97, 0.95);
    --bg-accent: rgba(255, 218, 97, 0.2);
    
    /* Border Colors */
    --border-primary: rgba(38, 38, 38, 0.15);
    --border-secondary: rgba(38, 38, 38, 0.3);
    --border-yellow: rgba(255, 218, 97, 0.6);
    --border-thick: 3px solid var(--black-primary);
    --border-thick-yellow: 3px solid var(--primary-yellow);
    --border-section: 8px solid var(--black-primary);
    --outline-thick: 2px solid var(--black-primary);
    
    /* Gradients */
    --gradient-primary: linear-gradient(45deg, var(--primary-yellow), var(--yellow-bright));
    --gradient-secondary: linear-gradient(135deg, var(--primary-yellow), var(--yellow-dark));
    --gradient-bg: radial-gradient(ellipse at center, var(--primary-yellow-medium), transparent 70%);
    --gradient-hero: linear-gradient(135deg, var(--primary-yellow) 0%, #FFF176 50%, var(--primary-yellow) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFDA61;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0; /* Ensure no default padding affects the header */
    margin-top: 0; /* Ensure no default margin affects the header */
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Header */
.header {
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    object-fit: contain;
    background-color: transparent;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff; /* White text for better contrast against black gradient */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--black-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black-primary);
    transition: width 0.3s ease;
    box-shadow: 0 1px 3px rgba(38, 38, 38, 0.2);
}

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

/* Home section navigation - show all nav items as hovered */
.home-nav .nav-link {
    color: var(--black-primary);
}

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

/* Floating nav home effect - make all dots appear active/highlighted */
.floating-nav.home-nav {
    background: rgba(255, 218, 97, 0.1);
    border-radius: 25px 0 0 25px;
    padding: 0.5rem 0;
    margin-right: -10px;
}

.floating-nav.home-nav .nav-dot .semicircle {
    background: linear-gradient(135deg, var(--yellow-dark), var(--primary-yellow)) !important;
    transform: scaleY(1.2) scaleX(1.1);
    box-shadow: -5px 0 25px rgba(249, 168, 37, 0.8) !important;
    border-color: var(--black-primary) !important;
}

.floating-nav.home-nav .nav-dot {
    opacity: 1;
}

/* Enhanced pulse effect for home nav */
.floating-nav.home-nav .nav-dot .semicircle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -3px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-bright));
    border-radius: 30px 0 0 30px;
    opacity: 0.4;
    animation: homeNavPulse 2s infinite;
    z-index: -1;
}

/* Make nav items appear "expanded" or "revealed" in home mode */
.floating-nav.home-nav .nav-menu-item {
    opacity: 0.7;
    visibility: visible;
    transform: translateY(-50%) translateX(-10px);
    transition: all 0.3s ease;
}

.floating-nav.home-nav .nav-dot:hover .nav-menu-item {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@keyframes homeNavPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.4; 
    }
    50% { 
        transform: scale(1.15); 
        opacity: 0.7; 
    }
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--black-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    margin-top: 0;
    background: 
        url('../assets/HeroImage.png');
    background-size: cover, auto;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: overlay;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    z-index: 1;
}



.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
}

.hero-content-left {
    text-align: left;
    padding-left: 2rem;
}

.hero-content-right {
    text-align: right;
    padding-right: 2rem;
}

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

.hero-title-button {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    background: rgba(38, 38, 38, 0.75);
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 1rem 2rem;
    border: 3px solid var(--black-primary);
    border-radius: 16px;
    font-family: inherit;
    box-shadow: 0 8px 25px rgba(38, 38, 38, 0.3);
    text-transform: uppercase;
    text-shadow: none;
}

.hero-title-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(38, 38, 38, 0.4);
    background: var(--primary-yellow);
    color: var(--black-primary);
    border-color: var(--primary-yellow);
    scale: 1.05;
}

.loading-hero {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    animation: fadeInOut 1.5s infinite alternate;
}

@keyframes fadeInOut {
    from { opacity: 0.5; }
    to { opacity: 1; }
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    outline: var(--outline-thick);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--black-primary);
    color: var(--primary-yellow);
    border: var(--border-thick);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(38, 38, 38, 0.3);
    background: var(--black-secondary);
    outline-color: var(--yellow-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--black-primary);
    border: var(--border-thick);
}

.btn-secondary:hover {
    background: var(--black-primary);
    color: var(--primary-yellow);
    outline-color: var(--primary-yellow);
}

/* Section Styles */
section {
    padding: 6rem 0;
    border-bottom: var(--border-section);
    position: relative;
    scroll-margin-top: 80px; /* Account for fixed header when scrolling to sections */
}

section:last-of-type {
    border-bottom: none;
}

.section-title-container {
    position: relative;
    z-index: 4;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.section-title {
    text-align: center;
    margin: 0 auto 0rem auto;
    margin-top: 2rem ;
    background: linear-gradient(45deg, var(--black-primary), var(--black-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 1rem 2rem;
    display: block;
    width: fit-content;
}

/* Games Section */
.games {
    background: 
        url('../assets/website_game_background.png'),
        linear-gradient(180deg, transparent, var(--primary-yellow-bg), transparent),
        #FFDA61;
    background-size: cover, auto, auto;
    background-position: center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-blend-mode: overlay;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
}

.games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 218, 97, 0.1) 0%, 
        rgba(255, 218, 97, 0.3) 50%, 
        rgba(255, 218, 97, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.games .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 6rem;
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.game-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: var(--border-thick);
    box-shadow: 0 4px 15px rgba(255, 218, 97, 0.2);
    outline: var(--outline-thick);
    outline-offset: 2px;
}

.game-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    box-shadow: 0 8px 30px rgba(255, 218, 97, 0.4);
    outline-color: var(--yellow-dark);
}

.game-image {
    height: 250px;
    background-size: cover, auto;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: var(--border-thick);
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.game-card:nth-child(2) .game-image {
    background-size: cover, auto;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: overlay;
}

.game-card:nth-child(3) .game-image {
    background-size: cover, auto;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: overlay;
}

.placeholder-game-image {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black-primary);
}

.game-info {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-info iframe {
    width: 100%;
    max-width: 646px;
    height: 190px;
    border: none;
}

.game-title {
    margin-bottom: 1rem;
    color: var(--black-primary);
}

.game-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.game-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--black-primary);
    color: var(--primary-yellow);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--black-primary);
    outline: 1px solid var(--primary-yellow);
    outline-offset: 1px;
}

/* News Section */
.news {
    background: 
        url('../assets/news_background.png'),
        linear-gradient(180deg, transparent, var(--primary-yellow-bg), transparent),
        #FFDA61;
    background-size: cover, auto, auto;
    background-position: center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-blend-mode: overlay;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 60vh; /* Reduced from 100vh to 60vh */
}

.news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 218, 97, 0.1) 0%, 
        rgba(255, 218, 97, 0.3) 50%, 
        rgba(255, 218, 97, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.news .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: var(--border-thick);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 218, 97, 0.1);
    outline: var(--outline-thick);
    outline-offset: 2px;
}

.news-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 218, 97, 0.3);
    outline-color: var(--yellow-dark);
}

.news-date {
    color: var(--yellow-dark);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-title {
    color: var(--black-primary);
    margin-bottom: 1rem;
}

.news-excerpt {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.read-more {
    color: var(--yellow-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--black-primary);
}

/* About Section */
.about {
    background: #FFDA61;
    padding: 6rem 0;
    border-bottom: var(--border-section);
}

.about-center {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--black-primary), var(--black-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.social-media-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: var(--border-thick);
    border-radius: 50%;
    color: var(--black-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 218, 97, 0.4);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Contact Section - Simplified */
.contact {
    padding: 0rem 0;
}

.contact-simple {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: var(--bg-card);
    border: var(--border-thick);
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: var(--outline-thick);
    outline-offset: 2px;
}

.contact-email:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 218, 97, 0.3);
}

/* Mailing List Section */
.mailing-list {
    background: #FFDA61;
    border-bottom: var(--border-section);
    padding: 0rem 0;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.mailing-list .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mailing-list .section-title {
    text-align: center;
    margin: 0 auto 2rem auto;
    margin-bottom: 0rem;
    transform: none;
    position: relative;
    left: 0;
    display: block;
    width: fit-content;
}

.mailing-list-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0 rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    text-align: center;
}

.mailing-list-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.mailing-list-form .form-group {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.mailing-list-form input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    background: white;
    border: var(--border-thick);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.mailing-list-form input[type="email"]:focus {
    outline: none;
    border-color: var(--yellow-dark);
    box-shadow: 0 0 0 2px var(--primary-yellow);
}

.mailing-list-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.mailing-list-form .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-card-hover);
    border: var(--border-thick);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow-dark);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px var(--primary-yellow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--black-primary);
    border-top: var(--border-section);
    padding: 1.5rem 0 1.5rem;
    color: var(--primary-yellow);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-self: start;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    filter: brightness(1.1);
    object-fit: contain;
}

.footer-brand-text {
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-yellow);
    font-size: 1rem;
}

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

.footer-links a {
    color: rgba(255, 218, 97, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-links a:not(.press-kit-link) {
    padding: 0.5rem 0;
}

.press-kit-link {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-yellow);
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: var(--primary-yellow) !important;
    background: transparent;
    font-size: 0.8rem;
    display: inline-block;
    white-space: nowrap;
}

.press-kit-link:hover {
    background: var(--primary-yellow);
    color: var(--black-primary) !important;
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 218, 97, 0.3);
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-self: end;
}

.social-link {
    color: rgba(255, 218, 97, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.social-link:hover {
    color: var(--primary-yellow);
    background: rgba(255, 218, 97, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 0.5rem;
    border-top: var(--border-section);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-dark);
    font-size: 0.85rem;
    margin: 0;
}

.footer-privacy {
    width: 100%;
    text-align: center;
}

.footer-privacy a {
    color: rgba(255, 218, 97, 0.6);
    text-align: center;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.footer-privacy a:hover {
    color: var(--primary-yellow);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 1.5rem;
        align-items: flex-end;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-title-button {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
    
    .games-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .game-card {
        width: 100%;
        max-width: 500px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .about-center {
        padding: 1rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .social-media-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact {
        padding: 0rem 0;
    }

    .contact-email {
        font-size: 1.1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .mailing-list {
        padding: 2rem 0;
    }
    
    .mailing-list .container {
        padding: 0 1rem;
    }
    
    .mailing-list-form .form-group {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }
    
    .mailing-list-form input[type="email"] {
        width: 100%;
    }
    
    .mailing-list-form .btn {
        width: 100%;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        justify-self: center;
    }
    
    .footer-links {
        justify-self: center;
    }
    
    .footer-social {
        justify-self: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Press Kit Page Styles */
.press-kit-hero {
    background: #FFDA61;
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: var(--border-section);
}

.press-kit-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.press-kit-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.company-info {
    padding: 80px 0;
    background: #FFDA61;
    border-bottom: var(--border-section);
}

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

.info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: var(--outline-thick);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 38, 38, 0.15);
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.info-card a {
    color: var(--text-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.info-card a:hover {
    opacity: 0.7;
}

.logos-branding {
    padding: 80px 0;
    background: #FFDA61;
    border-bottom: var(--border-section);
}

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

.download-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: var(--outline-thick);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(38, 38, 38, 0.2);
}

.preview-box {
    background: rgba(255, 255, 255, 1);
    border: var(--outline-thick);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.preview-box.logo-dark {
    background: var(--black-primary);
}

.logo-preview {
    max-width: 120px;
    max-height: 80px;
    filter: none;
}

.preview-box.logo-dark .logo-preview {
    filter: brightness(0) saturate(100%) invert(83%) sepia(37%) saturate(1098%) hue-rotate(357deg) brightness(108%) contrast(102%);
}

.download-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.download-item p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.games-assets {
    padding: 80px 0;
    background: #FFDA61;
    border-bottom: var(--border-section);
}

.games-press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-press-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: var(--outline-thick);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-press-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 38, 38, 0.15);
}

.game-press-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-press-card > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.asset-downloads, .game-facts {
    margin-bottom: 1.5rem;
}

.asset-downloads h4, .game-facts h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.asset-downloads ul, .game-facts ul {
    list-style: none;
    padding: 0;
}

.asset-downloads li, .game-facts li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.asset-downloads li:before {
    content: "📁";
    position: absolute;
    left: 0;
}

.game-facts li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

.download-all {
    padding: 100px 0;
    background: #FFDA61;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.download-all .container {
    width: 100%;
    text-align: center;
}

.download-all .section-title {
    display: block;
    text-align: center;
    margin: 0 auto 3rem auto;
    transform: none;
    margin-left: auto;
    margin-right: auto;
}

.download-all-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 4rem;
    max-width: 700px;
    margin: 0 auto;
    border: var(--outline-thick);
    box-shadow: 0 15px 40px rgba(38, 38, 38, 0.15);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.download-all-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(38, 38, 38, 0.2);
}

.download-all-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-all-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.press-kit-contents {
    margin: 2rem 0;
    text-align: left;
}

.press-kit-contents h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contents-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.contents-list li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.contents-list li:before {
    content: "📎";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.download-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Responsive Design for Press Kit */
@media (max-width: 768px) {
    .press-kit-title {
        font-size: 2.5rem;
    }
    
    .press-kit-subtitle {
        font-size: 1rem;
    }
    
    .download-all {
        padding: 60px 0;
        min-height: 50vh;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .games-press-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .download-all-card {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
        max-width: none;
    }
    
    .contents-list {
        grid-template-columns: 1fr;
    }
}

/* Additional header responsive styles */
@media (max-width: 480px) {
    .header {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        width: 30px;
        height: 30px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
}