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

/* Custom Fonts */
@font-face {
    font-family: 'Zalando Sans';
    src: url('../assets/fonts/ZalandoSansExpanded-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Zalando Sans';
    src: url('../assets/fonts/ZalandoSansExpanded-Bold.ttf') format('truetype');
    font-weight: bold;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    max-width: 320px;
}

.wishlist-button {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.wishlist-button img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: filter 0.4s ease, transform 0.4s ease;
    transform: scale(1);
}

.wishlist-button:hover img {
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.7));
    transform: scale(1.08);
}

.cta-button {
    padding: 16px 48px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background-color: rgba(255, 0, 0, 0.8);
    border: 2px solid #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    background-color: #ff0000;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
}

/* Floating Wishlist Button */
.floating-wishlist {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    z-index: 1000;
}

.floating-wishlist img {
    max-width: 120px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0px 0px rgba(0, 0, 0, 0));
    transition: filter 0.4s ease, transform 0.4s ease;
    transform: scale(1);
}

.floating-wishlist:hover img {
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.7));
    transform: scale(1.08);
}

/* Content Area */
.content {
    background-color: #ffffff;
    padding: 60px 20px;
}

/* Game Sections */
.game-section {
    max-width: 1000px;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.section-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border: 2px dotted #caa982;
}

.section-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #000;
    -webkit-user-select: none;
    user-select: none;
}

.section-text {
    max-width: 800px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Press Kit Button */
.press-kit-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.press-kit-button {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #333333;
    background-color: transparent;
    border: 2px solid #333333;
    border-radius: 4px;
    cursor: pointer;
    transition: filter 0.4s ease, transform 0.4s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    filter: drop-shadow(0 0px 0px rgba(0, 0, 0, 0));
    transform: scale(1);
}

.press-kit-button:hover {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transform: scale(1.08);
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    background-color: #000000;
}

.logo-text {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.company-logo {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    padding: 40px 20px;
    border-top: 1px solid #e0e0e0;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Responsive Design - Tablets */
@media (max-width: 768px) {
    .hero {
        height: 35vh;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .wishlist-button img {
        max-width: 240px;
    }

    .floating-wishlist {
        bottom: 20px;
        right: 20px;
    }

    .floating-wishlist img {
        max-width: 90px;
    }

    .cta-button {
        padding: 14px 36px;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .content {
        padding: 40px 15px;
    }

    .hero {
        background-attachment: scroll;
    }

    .game-section {
        margin: 60px auto;
        gap: 30px;
    }

    .section-image,
    .section-video {
        max-width: 600px;
    }

    .section-text {
        max-width: 600px;
        font-size: 15px;
    }

    .logo-section {
        padding: 60px 15px;
    }

    .logo-text {
        font-size: 16px;
    }

    .company-logo {
        max-width: 250px;
    }

    .social-links {
        gap: 20px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon img {
        width: 25px;
        height: 25px;
    }
}

/* Portrait orientation on larger screens */
@media (orientation: portrait) and (min-width: 769px) {
    .hero {
        height: 60vh;
        padding-bottom: 30px;
    }
}

/* Landscape with small margin (nearly square) */
@media (orientation: landscape) and (max-aspect-ratio: 1.4/1) {
    .hero {
        height: 60vh;
        padding-bottom: 30px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .hero {
        height: 30vh;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 15px;
        background-attachment: scroll;
    }

    .wishlist-button img {
        max-width: 200px;
    }

    .floating-wishlist {
        bottom: 15px;
        right: 15px;
    }

    .floating-wishlist img {
        max-width: 70px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .content {
        padding: 30px 10px;
    }

    .game-section {
        margin: 40px auto;
        gap: 20px;
    }

    .section-image,
    .section-video {
        max-width: 100%;
    }

    .section-text {
        max-width: 100%;
        font-size: 14px;
    }

    .logo-section {
        padding: 40px 10px;
    }

    .logo-text {
        font-size: 14px;
    }

    .company-logo {
        max-width: 200px;
    }

    .social-links {
        gap: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }
}

/* Ultra-small mobile */
@media (max-width: 360px) {
    .hero {
        height: 25vh;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 12px;
    }

    .section-text {
        font-size: 13px;
    }

    .social-links {
        gap: 10px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon img {
        width: 18px;
        height: 18px;
    }
}
