* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #b7c6dd, #dde4ed);
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    filter: invert(17%) sepia(12%) saturate(1897%) hue-rotate(169deg) brightness(101%) contrast(83%);
}

.coming-soon {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.game-info {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.game-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.game-description,
.game-purpose,
.more-info {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #4a5a6a;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 300;
}

.game-description strong,
.game-purpose strong {
    font-weight: 500;
    color: #2c3e50;
}

.more-info {
    font-style: italic;
    color: #6a7a8a;
    margin-bottom: 1.5rem;
}

.link-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.official-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 400;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex: 1;
    min-width: 200px;
}

.official-link:hover {
    background-color: #3a4f63;
    transform: translateY(-2px);
}

.official-link:active {
    transform: translateY(0);
}

.currency-dropdown {
    position: relative;
    display: inline-block;
}

.currency-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    color: #2c3e50;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 400;
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    min-width: 80px;
    justify-content: center;
}

.currency-toggle:hover {
    background-color: #f5f7fa;
    border-color: #3a4f63;
}

.currency-toggle:active {
    background-color: #e8ecf0;
}

.dropdown-arrow {
    width: 12px;
    height: 8px;
    transition: transform 0.3s ease;
    color: #2c3e50;
}

.currency-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.currency-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: #ffffff;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    min-width: 100px;
    overflow: hidden;
}

.currency-dropdown.active .currency-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: none;
    color: #2c3e50;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 400;
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.currency-option:hover {
    background-color: #f5f7fa;
}

.currency-option:active {
    background-color: #e8ecf0;
}

.currency-option.selected {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 500;
}

.disclaimer {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #5a6c7d;
    line-height: 1.6;
}

.disclaimer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.heart-icon {
    display: inline-block;
    vertical-align: middle;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        max-width: 280px;
    }
    
    .coming-soon {
        margin-bottom: 1.5rem;
    }
    
    .game-info {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .disclaimer {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        padding: 1rem;
        width: 100%;
    }
    
    .disclaimer p {
        font-size: clamp(0.75rem, 3vw, 0.875rem);
        line-height: 1.5;
        text-align: center;
    }
    
    body {
        overflow-y: auto;
        min-height: 100vh;
        align-items: flex-start;
        padding-bottom: 1rem;
    }
    
    .container {
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .link-wrapper {
        flex-direction: column;
        width: 100%;
    }
    
    .official-link {
        width: 100%;
        min-width: auto;
    }
    
    .currency-toggle {
        width: 100%;
    }
    
    .currency-menu {
        right: auto;
        left: 0;
        width: 100%;
    }
}

