/* Global font */
body, button, input, select, textarea {
    font-family: 'Baloo 2', 'Comic Sans MS', 'Comic Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, cursive, sans-serif;
}

.main-header {
    text-align: center;
    margin: 20px 0;
}

.main-header h1 {
    font-size: 2.5rem;
    color: #ff69b4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
}

.memorial-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.memorial-image {
    max-width: 150px;
    margin: 0 auto;
    display: block;
    border-radius: 50%;
    border: 3px solid #ff69b4;
}

/* Rest of existing CSS styles below */
.game-instructions {
    text-align: center;
    margin: 20px auto;
    padding: 0 20px;
}

.game-instructions p {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

#game-container {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    padding: 20px;
    max-width: 100%;
}

.game-main {
    width: 100%;
    max-width: 600px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.milk-drops-display {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 1rem 0;
}

.passive-gainz-display {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0 0.25rem 0;
}

.click-value-display {
    font-size: 0.9rem;
    color: #666;
    margin: 0.25rem 0 1rem 0;
}

.clickable-image {
    cursor: pointer;
    max-width: 300px;
    width: 100%;
    margin: 2rem auto;
    display: block;
    transition: transform 0.1s;
}

.clickable-image:active {
    transform: scale(0.95);
}

#dynamic-shop {
    width: 100%;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.shop-table {
    width: 100%;
    max-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.shop-table thead {
    background: #ff69b4;
    color: white;
}

.shop-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.shop-table th:first-child {
    border-top-left-radius: 10px;
}

.shop-table th:last-child {
    border-top-right-radius: 10px;
}

.shop-table tbody tr {
    border-bottom: 1px solid #ffe6f0;
    transition: background-color 0.2s;
}

.shop-table tbody tr:last-child {
    border-bottom: none;
}

.shop-table tbody tr:hover {
    background-color: #fff9fc;
}

.shop-table td {
    padding: 1rem;
    vertical-align: middle;
}

.shop-item-name {
    font-weight: 600;
    color: #333;
}

.shop-item-cost {
    color: #666;
}

.shop-item-upgrade {
    color: #666;
    font-size: 0.9rem;
}

.shop-item-action {
    text-align: right;
}

.purchase-btn {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.purchase-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.purchase-btn.purchased {
    background: #808080;
    color: white;
    cursor: not-allowed;
}

.prestige-btn {
    background: linear-gradient(135deg, #ff69b4, #ff4da6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.3);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prestige-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff4da6, #ff69b4);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 105, 180, 0.4);
}

.prestige-btn:active:not(:disabled) {
    transform: translateY(0);
}

.prestige-btn:disabled {
    background: linear-gradient(135deg, #cccccc, #aaaaaa);
    color: #888;
    cursor: not-allowed;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0.6;
}

.prestige-level {
    margin-top: 0.5rem;
    color: #ff69b4;
    font-weight: 600;
    font-size: 1rem;
}

.reset-container {
    text-align: center;
    margin: 2rem 0;
}

.reset-btn {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.reset-btn:hover {
    background: #ff4da6;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.session-container {
    margin-top: 2rem;
    text-align: center;
}

.session-label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

.session-id-text {
    font-family: 'Courier New', monospace;
    color: #ff69b4;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    user-select: all;
    transition: color 0.2s;
}

.session-id-text:hover {
    color: #ff4da6;
}

.load-session-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.session-id-input {
    padding: 0.5rem 1rem;
    border: 2px solid #ff69b4;
    border-radius: 5px;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    min-width: 200px;
    max-width: 300px;
}

.session-id-input:focus {
    outline: none;
    border-color: #ff4da6;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.load-session-btn {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.load-session-btn:hover {
    background: #ff4da6;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.disclaimer {
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

@media (max-width: 600px) {
    #game-container {
        padding: 10px;
    }
    
    .game-main {
        max-width: 100%;
    }
    
    .clickable-image {
        max-width: 250px;
    }
    
    .shop-table {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .shop-table th,
    .shop-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .shop-item-upgrade {
        font-size: 0.8rem;
    }
}
