<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    margin: 0;
}

.header-banner {
    background-color: #8b6b8f;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
}

.highlight {
    color: #ffd700;
}

.profile-image {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.josefin-sans-txt {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.quicksand-txt {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

#game-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;    
    width: 600px;
    margin-left: 20px;
    margin-right: auto;
    border-radius: 12px;    
}

#game {
    width: 600px;
    height: 800px;
    display: flex;
    justify-content: center;
}

#game canvas {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

.back-button {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    z-index: 1000;
}

.back-button:hover {
    color: #ffd700;
}

.game-area {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.game-info {
    flex: 1;
    padding: 30px;
    margin-left: 20px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-info h2 {
    margin-bottom: 20px;
    border-bottom: 2px solid #333333;
    padding-bottom: 10px;
    font-family: 'W95FA', sans-serif;
}

.game-info p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
}

.question-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#startReadingBtn, #consultBtn, #interpretBtn {
    padding: 10px 20px;
    font-size: 18px;
    font-family: 'W95FA', sans-serif;
    background-color: #333333;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    color: white;
    cursor: pointer;
}

#startReadingBtn:disabled, #consultBtn:disabled, #interpretBtn:disabled {
    background-color: #999999;
    cursor: not-allowed;
}

#consultBtn {
    align-self: flex-start;
}

#startReadingBtn:hover, #consultBtn:hover, #interpretBtn:hover {
    background-color: #555555;
}

#tarotQuestion {
    width: 100%;
    height: 120px;
    padding: 15px;
    background: rgba(255,255,255,0.7);
    color: #333333;
    border: 2px solid #333333;
    border-radius: 12px;
    font-family: 'W95FA', sans-serif;
    font-size: 16px;
    resize: none;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

#tarotQuestion:disabled {
    background: rgba(240,240,240,0.7);
    color: #777777;
    border-color: #999999;
}

.char-counter {
    align-self: flex-end;
    font-family: 'W95FA', sans-serif;
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
}

#user-question {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

#interpretation-text {
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
    font-size: 16px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    border-left: 3px solid #333333;
    background-color: rgba(240, 240, 240, 0.2);
    border-radius: 0 5px 5px 0;
}

#loadingIndicator {
    margin-left: 10px;
}

.button-container {
    margin-top: 20px;
    display: flex;
}

.button-container button {
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .header-banner {
        padding: 0.15rem 0;
        min-height: 35px;
    }

    .game-area {
        flex-direction: column;
        align-items: center;
    }

    #game-container {
        width: 100%;
        max-width: 600px;
        margin-left: 0;
    }

    .game-info {
        margin-left: 0;
        margin-top: 20px;
        padding: 15px;
        max-width: 100%;
        text-align: center;
    }

    #game {
        width: 100%;
        max-width: 600px;
        height: calc(100vh - 35px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #game canvas {
        width: 100% !important;
        height: auto !important;
        max-width: 600px;
        max-height: calc(100vh - 35px);
    }

    .back-button {
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
    }

    .back-button span {
        display: none;
    }
} </pre></body></html>