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

body {
    font-family: 'Grenze Gotisch', serif;
    background-color: #1A2B3C;
    color: #FFB800;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Game Container */
.game-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* Background Styling */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

/* Character Styling */
.character {
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 400px;
    height: auto;
}

.trump-character {
    width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
}

/* Logo Styling */
.game-logo {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 40px;
}

.title-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.2));
}

/* Menu Styling */
.main-menu {
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* Play Game Button Styling */
.play-game-wrapper {
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-bottom: 20px;
}

.play-button {
    background: rgba(26, 43, 60, 0.9);
    border: 1px solid rgba(255, 184, 0, 0.3);
    padding: 15px 40px;
    position: relative;
    display: inline-block;
    min-width: 300px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-button .button-text {
    font-size: 42px;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.play-button.disabled {
    cursor: not-allowed;
}

.coming-soon {
    font-size: 14px;
    color: #808080;
    text-transform: lowercase;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Menu Items Wrapper */
.menu-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Menu Items */
.menu-item {
    font-size: 42px;
    color: #FFB800;
    text-decoration: none;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
    position: relative;
    padding: 5px 15px;
    white-space: nowrap;
}

.menu-item:not(.disabled):hover {
    color: #FFD700;
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

/* Menu Divider */
.menu-divider {
    width: 35px;
    height: auto;
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.2));
}

/* Version Number */
.version {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
    color: #FFB800;
    opacity: 0.8;
    font-family: 'Courier New', monospace;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .menu-wrapper {
        gap: 25px;
    }

    .menu-item {
        font-size: 36px;
    }

    .play-button .button-text {
        font-size: 38px;
    }

    .menu-divider {
        width: 30px;
    }
}

@media (max-width: 900px) {
    .game-container {
        gap: 40px;
    }

    .menu-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .menu-item {
        font-size: 32px;
    }

    .menu-divider {
        transform: rotate(90deg);
        width: 25px;
    }

    .play-button .button-text {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .menu-item {
        font-size: 28px;
    }

    .play-button .button-text {
        font-size: 30px;
    }

    .menu-divider {
        width: 20px;
    }
}

/* Back Button Global Style */
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 32px;
    color: #FFB800;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
    padding: 12px 28px;
    z-index: 2;
    background: rgba(26, 43, 60, 0.7);
    border: 1px solid rgba(255, 184, 0, 0.3);
    font-family: 'Grenze Gotisch', serif;
    letter-spacing: 1px;
}

.back-button:hover {
    background: rgba(26, 43, 60, 0.5);
    border-color: rgba(255, 184, 0, 0.5);
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
    color: #FFD700;
}

/* Menu Button */
.menu-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(26, 43, 60, 0.9);
    border: 1px solid rgba(255, 184, 0, 0.3);
    padding: 10px 20px;
    font-family: 'Grenze Gotisch', serif;
    font-size: 24px;
    color: #FFB800;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.menu-button:hover {
    color: #FFD700;
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
    border-color: rgba(255, 184, 0, 0.5);
} 