/* Force desktop layout and override all responsive styles */
html, body {
    min-width: 1024px;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.game-container {
    min-width: 1024px;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Consistent scrollbar styling */
.text-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 184, 0, 0.3) rgba(26, 43, 60, 0.5);
}

.text-content::-webkit-scrollbar {
    width: 8px;
}

.text-content::-webkit-scrollbar-track {
    background: rgba(26, 43, 60, 0.5);
    border-radius: 4px;
}

.text-content::-webkit-scrollbar-thumb {
    background: rgba(255, 184, 0, 0.3);
    border-radius: 4px;
}

.text-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 184, 0, 0.5);
}

/* Force consistent logo sizing */
.game-logo {
    width: 100%;
    max-width: 450px !important;
    margin-bottom: 30px !important;
}

.title-image {
    width: 100% !important;
    max-width: 450px !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Override all mobile-specific styles */
@media (max-width: 1400px), (max-width: 900px), (max-width: 600px) {
    .content-wrapper {
        flex-direction: row !important;
        height: 100vh !important;
        min-height: 100vh !important;
        padding: 0 !important;
        overflow: hidden !important;
        position: relative !important;
        width: 100% !important;
        min-width: 1024px !important;
    }

    .text-content,
    .text-content.custom-scrollbar {
        width: 50% !important;
        min-width: 512px !important;
        padding: 40px 30px 40px 60px !important;
        order: unset !important;
        height: 100vh !important;
        max-height: 100vh !important;
        align-items: flex-start !important;
        text-align: left !important;
        position: relative !important;
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        scrollbar-gutter: stable !important;
    }

    .image-content {
        width: 50% !important;
        min-width: 512px !important;
        height: 100vh !important;
        min-height: 100vh !important;
        padding: 0 !important;
        margin: 0 !important;
        justify-content: flex-end !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .character-image {
        height: 95vh !important;
        width: auto !important;
        max-height: 95vh !important;
        min-height: 95vh !important;
        object-fit: contain !important;
        object-position: right bottom !important;
        position: absolute !important;
        bottom: 0 !important;
        right: 0 !important;
    }

    .main-heading {
        font-size: 72px !important;
        text-align: left !important;
        line-height: 1.2 !important;
        margin: 0 0 30px !important;
        width: 100% !important;
        max-width: 450px !important;
    }

    .tokenomics-text,
    .story-text,
    .buy-text,
    .socials-text {
        margin: 0 !important;
        font-size: 18px !important;
        width: 100% !important;
        max-width: 450px !important;
    }

    .tokenomics-grid,
    .socials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 450px !important;
        margin: 30px 0 !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .action-links {
        flex-direction: row !important;
        gap: 30px !important;
        justify-content: flex-start !important;
        width: 100% !important;
        max-width: 450px !important;
        margin-top: auto !important;
        padding-top: 30px !important;
    }

    .action-links .menu-item {
        width: auto !important;
        text-align: left !important;
        font-size: 32px !important;
        white-space: nowrap !important;
    }

    .menu-wrapper {
        flex-direction: row !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 800px !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .menu-item {
        font-size: 32px !important;
        white-space: nowrap !important;
    }

    .menu-divider {
        transform: none !important;
        width: 40px !important;
        height: auto !important;
        flex-shrink: 0 !important;
    }

    .exchange-buttons {
        flex-direction: row !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 450px !important;
    }
    
    .exchange-btn {
        width: auto !important;
        white-space: nowrap !important;
    }

    .contract-address {
        flex-direction: row !important;
        align-items: center !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 450px !important;
    }

    .steps-container {
        width: 100% !important;
        max-width: 450px !important;
        margin: 30px 0 !important;
    }

    .step-item {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    /* Force consistent button and interactive element sizing */
    .play-button,
    .back-button,
    .menu-item,
    .exchange-btn {
        transform: none !important;
        transition: color 0.3s ease !important;
    }

    .play-button:hover,
    .back-button:hover,
    .menu-item:hover,
    .exchange-btn:hover {
        transform: none !important;
    }

    /* Version number positioning */
    .version {
        position: fixed !important;
        bottom: 20px !important;
        left: 20px !important;
    }
}

/* Prevent any height-based responsive changes */
@media (max-height: 800px), (max-height: 700px) {
    .character-image {
        height: 95vh !important;
        max-height: 95vh !important;
        min-height: 95vh !important;
    }
} 