body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #2c2c2c 0%, #1a1a1a 100%);
    background-attachment: fixed;
    font-family: 'Noto Sans', sans-serif;
    color: white;
    overflow-x: hidden;
}

#video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translate(-50%, -50%);
    object-fit: cover;
    background-color: #2c2c2c;
    filter: brightness(0.4);
}

#video-fallback {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    background-color: #2c2c2c;
}

.video-preview {
    width: 800px;
    height: 500px;
    background-color: #2c2c2c;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.video-placeholder svg {
    opacity: 0.3;
}

.main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    text-align: center;
    padding: 35px 35px;
    box-sizing: border-box;
    max-width: 100vw;
}

.game-logo {
    margin-bottom: 15px;
}

.game-logo h1 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    color: #F1B21A;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 0 20px;
}

.btn-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.25s ease;
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 4px;
    white-space: nowrap;
}

.btn-icon {
    margin-right: 0;
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: filter 0.25s ease;
    filter: invert(1);
}

.btn-wishlist {
    background-color: transparent;
    color: white;
}

.btn-wishlist:hover {
    background-color: transparent;
    box-shadow: none;
    transform: scale(1.1);
}

.btn-wishlist:hover .btn-icon {
    filter: invert(1);
}

.itch-widget-wrapper {
    width: 552px;
    max-width: 100%;
    aspect-ratio: 552 / 167;
    margin-bottom: 30px;
}

.itch-widget-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.btn-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 1.0);
    margin-bottom: -4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.out-now-label {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #F1B21A;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

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

.contact-email {
    font-size: 1.0rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0px;
}

.footer {
    text-align: center;
    font-size: 0.8rem;
}

.game-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 1000px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .game-logo h1 {
        font-size: 2.8rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 12px 16px;
    }

    .video-preview {
        width: 100%;
        max-width: 320px;
        height: 180px;
    }

    .btn-row {
        gap: 8px;
    }
    
    .main-content {
        padding: 60px 16px 30px;
        box-sizing: border-box;
        width: 100%;
    }

    .itch-widget-wrapper {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 552 / 167;
    }

    .slideshow-wrap {
        width: 100%;
        max-width: 100%;
    }

    .game-logo-img {
        width: 280px;
    }

    .game-description {
        font-size: 0.95rem;
        padding: 0 4px;
    }

    .out-now-label {
        font-size: 1.1rem;
    }

    .button-container {
        padding: 0;
        gap: 20px;
    }
}


.hamburger-btn {
    position: fixed;
    top: 20px;
    right: 16px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid white;
    border-radius: 4px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: all 0.25s ease;
}

.hamburger-btn:hover {
    transform: scale(1.1);
}

.hamburger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.hamburger-dropdown {
    display: none;
    position: fixed;
    top: 68px;
    right: 16px;
    z-index: 1000;
    background: #2a2a2a;
    border: 2px solid white;
    border-radius: 4px;
    min-width: 200px;
    overflow: hidden;
}

.hamburger-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 16px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    font-family: 'Noto Sans', sans-serif;
    letter-spacing: 1px;
    transition: background 0.2s ease;
}

.hamburger-dropdown button:last-child {
    border-bottom: none;
}

.hamburger-dropdown button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hamburger-dropdown button svg {
    flex-shrink: 0;
    filter: invert(1);
}

.privacy-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.privacy-overlay.active {
    display: flex;
}

.privacy-modal {
    background: #2a2a2a;
    border: 2px solid white;
    border-radius: 4px;
    padding: 28px;
    max-width: 880px;
    width: 90%;
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.privacy-modal h3 {
    color: #F1B21A;
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.privacy-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.privacy-modal-close:hover {
    color: #fff;
}

.privacy-modal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0 0 20px;
}

.privacy-modal .privacy-close-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid white;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Noto Sans', sans-serif;
    letter-spacing: 2px;
    transition: all 0.25s ease;
}

.privacy-modal .privacy-close-btn:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.08);
}

/*.slideshow-wrap {
    position: relative;
    width: 800px;
    max-width: 100%;
    background: #2c2c2c;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 800/500;
    margin-bottom: 30px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}*/

.slideshow-wrap {
    position: relative;
    width: 800px;
    max-width: 100%;
    aspect-ratio: 800 / 500;
    background: #2c2c2c;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
}

.slides-inner {
    display: flex;
    height: 100%;
    transition: transform 0.35s ease;
    width: calc(100% * 9);
}

.slide {
    width: calc(100% / 9);
    height: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.75);
}

.arrow-left {
    left: 12px;
}

.arrow-right {
    right: 12px;
}

.dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active {
    background: #F1B21A;
}

.youtube-wrap {
    position: relative;
    width: 800px;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    background: #2c2c2c;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.steam-header-link {
    position: relative;
    display: block;
    border: 2px solid white;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 50px;
    max-width: 552px;
    width: 100%;
    transition: transform 0.25s ease;
    text-decoration: none;
}

.steam-header-link:hover {
    transform: scale(1.02);
}

.steam-header-overlay {
    justify-content: flex-end;
    padding: 24px 16px 12px;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    padding: 24px 16px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
}

.overlay-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.press-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    width: 100%;
}

.press-card {
    display: flex;
    flex-direction: column;
    width: 260px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
}

.press-card:hover {
    transform: scale(1.03);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.press-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.press-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.press-info {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.press-outlet {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #F1B21A;
}

.press-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .press-card {
        width: 100%;
        max-width: 320px;
    }
}