/* Tokenomics Page Specific Styles */
.tokenomics-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

/* Override game-container styles for tokenomics page */
.game-container.tokenomics-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

/* Content Layout */
.content-wrapper {
    display: flex;
    flex: 1;
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
    background-color: transparent;
    max-width: 2000px;
    margin: 0 auto;
    overflow: hidden;
}

/* Text content */
.text-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px 0 60px;
    position: relative;
    z-index: 1;
    background-color: transparent;
    max-width: 800px;
    height: 100vh;
}

/* Logo Styling */
.game-logo {
    margin-bottom: 20px;
    text-align: left;
}

.title-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 64px;
    color: #FFB800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-family: 'Grenze Gotisch', serif;
}

/* Tokenomics Specific Styles */
.tokenomics-text {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #E0E0E0;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

.tokenomics-text p {
    margin-bottom: 20px;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.tokenomics-item {
    background: rgba(26, 43, 60, 0.7);
    border: 1px solid rgba(255, 184, 0, 0.3);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.tokenomics-item:hover {
    background: rgba(26, 43, 60, 0.5);
    border-color: rgba(255, 184, 0, 0.5);
    transform: scale(1.02);
}

.tokenomics-item h3 {
    font-family: 'Grenze Gotisch', serif;
    font-size: 24px;
    color: #FFB800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.highlight {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
}

.quote {
    font-family: 'Grenze Gotisch', serif;
    font-size: 32px;
    color: #FFB800;
    text-align: center;
    margin: 40px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
    letter-spacing: 1px;
}

/* Image Content */
.image-content {
    width: 55%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background-color: transparent;
    height: 100vh;
    padding-right: 40px;
    padding-bottom: 0;
}

.character-image {
    width: auto;
    height: 90vh;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.5));
}

/* Action Links */
.action-links {
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-links .menu-item {
    font-size: 32px;
    padding: 12px 28px;
    background: rgba(26, 43, 60, 0.7);
    border: 1px solid rgba(255, 184, 0, 0.3);
    transition: all 0.3s ease;
    font-family: 'Grenze Gotisch', serif;
    letter-spacing: 1px;
    text-decoration: none;
    color: #FFB800;
}

.action-links .menu-item: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);
}

.action-links .menu-divider {
    width: 38px;
    height: auto;
    opacity: 0.8;
}

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

/* Responsive Design */
@media (min-width: 1401px) {
    .text-content {
        padding: 0 60px 0 80px;
    }

    .character-image {
        height: 95vh;
    }

    .title-image {
        max-width: 450px;
    }

    .main-heading {
        font-size: 72px;
    }

    .tokenomics-text {
        font-size: 20px;
    }
}

@media (max-width: 1400px) {
    .text-content {
        padding: 0 40px 0 60px;
    }

    .character-image {
        height: 85vh;
    }

    .main-heading {
        font-size: 56px;
    }

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

    .action-links .menu-item {
        font-size: 30px;
        padding: 12px 26px;
    }
}

@media (max-width: 1200px) {
    .character-image {
        height: 80vh;
    }
}

@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding: 80px 0 0;
        overflow: visible;
    }

    .text-content {
        width: 100%;
        padding: 30px;
        order: 1;
        height: auto;
        align-items: center;
        text-align: center;
    }

    .image-content {
        width: 100%;
        height: auto;
        min-height: 60vh;
        padding: 0;
        margin-top: -60px;
        justify-content: center;
        overflow: visible;
    }

    .character-image {
        height: auto;
        width: 90%;
        max-height: none;
        object-position: bottom center;
    }

    .main-heading {
        font-size: 48px;
        text-align: center;
    }

    .game-logo {
        text-align: center;
    }

    .tokenomics-text {
        margin: 0 auto;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 30px auto;
    }

    .action-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .content-wrapper {
        padding: 60px 0 0;
    }

    .text-content {
        padding: 20px;
    }

    .image-content {
        margin-top: -40px;
    }

    .character-image {
        width: 100%;
    }

    .main-heading {
        font-size: 42px;
    }

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

    .tokenomics-item h3 {
        font-size: 20px;
    }

    .highlight {
        font-size: 20px;
    }

    .quote {
        font-size: 28px;
    }

    .action-links {
        flex-direction: column;
        gap: 15px;
    }

    .action-links .menu-item {
        width: 100%;
        text-align: center;
        font-size: 28px;
    }

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

@media (max-height: 800px) {
    .character-image {
        height: 85vh;
    }
}

@media (max-height: 700px) {
    .character-image {
        height: 80vh;
    }
} 