* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.logo {
    text-align: center;
}

.logo h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 300;
    color: #333;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-family: 'Josefin Slab', serif;
}

.logo p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: #666;
    font-weight: 400;
    margin-top: 5.5rem;
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Alternative: If you want to use an actual logo image instead, uncomment this and add your logo file */

.logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
}


footer {
    padding: 2rem 1rem;
    text-align: center;
}

footer p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer a {
    color: #333;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: inline-block;
}

footer a:hover {
    text-decoration: underline;
}

/* Company Info Page Styles */
.company-info {
    max-width: 600px;
    text-align: left;
    margin: 0 auto;
}

.company-info h1 {
    font-family: 'Josefin Slab', serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 300;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.info-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.info-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.company-info h2 {
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.company-info p {
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.company-info a {
    color: #333;
    text-decoration: none;
}

.company-info a:hover {
    text-decoration: underline;
}

/* Press Kit Page */
.press-kit-page {
    max-width: 1100px;
}

.press-kit-banner {
    margin-bottom: 2rem;
}

.press-kit-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.press-kit-trailer {
    margin-bottom: 2rem;
}

.trailer-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 1rem;
}

.trailer-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.press-kit-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.press-kit-top-row .info-section {
    margin-bottom: 0;
}

.links-section {
    margin-top: 2rem;
}

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

.screenshot-grid a {
    display: block;
}

.screenshot-grid img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

@media (max-width: 800px) {
    .press-kit-top-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .screenshot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .press-kit-top-row .info-section {
        margin-bottom: 2.5rem;
    }

    .press-kit-top-row .info-section:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 500px) {
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
}

/* Social Links */
.social-links {
    text-align: center;
    padding: 1.5rem 1rem;
}

.social-links a {
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #666;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #333;
    text-decoration: underline;
}

/* Steam Wishlist CTA */
.cta-wishlist {
    margin-top: 3rem;
}

.steam-wishlist-btn {
    display: inline-block;
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background-color: #f8f9fa;
    border: 2px solid #333;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.steam-wishlist-btn:hover {
    background-color: #333;
    color: white;
    text-decoration: none;
}