.drink-style {
    max-width: 600px !important;
    width: 95% !important;
    height: 90vh !important;
    max-height: 80vh !important;
    padding: 20px !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 30, 60, 0.95)) !important;
    border: 3px solid #00bfff !important;
    color: white;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.drink-style h3 {
    margin: 0 0 10px 0;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 10px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.drinks-grid::-webkit-scrollbar {
    width: 8px;
}

.drinks-grid::-webkit-scrollbar-track {
    background: rgba(0, 191, 255, 0.1);
    border-radius: 4px;
}

.drinks-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 191, 255, 0.3);
    border-radius: 4px;
}

.drinks-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 191, 255, 0.5);
}

.drink-card {
    background: rgba(0, 191, 255, 0.1);
    border: 2px solid rgba(0, 191, 255, 0.3);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
    min-height: 200px;
    max-height: 250px;
}

.drink-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
    background: rgba(0, 191, 255, 0.2);
}

.drink-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.drink-name {
    font-weight: bold;
    color: #00bfff;
    font-size: 0.9em;
}

.drink-cost {
    background: rgba(255, 215, 0, 0.2);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8em;
}

.drink-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9em;
}

.drink-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
    margin: 5px 0;
}

.drink-btn {
    background: linear-gradient(45deg, #0088ff, #00bfff);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.drink-btn:hover {
    background: linear-gradient(45deg, #00bfff, #0088ff);
    transform: translateY(-2px);
}

.drink-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(45deg, #666, #999) !important;
    pointer-events: none;
}

.drink-btn.disabled:hover {
    transform: none;
    background: linear-gradient(45deg, #666, #999) !important;
}

.drink-confirmation {
    text-align: center;
    padding: 20px;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.effects-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.effect-item {
    padding: 10px;
    border-radius: 10px;
    font-size: 1.1em;
}

.effect-item.gain {
    background: rgba(0, 255, 57, 0.1);
    color: #00ff39;
}

.effect-item.loss {
    background: rgba(255, 57, 57, 0.1);
    color: #ff3939;
}

.ok-btn {
    background: linear-gradient(45deg, #0088ff, #00bfff);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.ok-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #00bfff, #0088ff);
}

.energy-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.2) 0%, transparent 70%);
    animation: expand-circle 0.5s ease-out forwards;
    pointer-events: none;
}

.food-emoji {
    position: absolute;
    right: -50px;
    top: 50%;
    font-size: 2em;
    animation: slide-and-fade 1s ease-out forwards;
    pointer-events: none;
}

@keyframes expand-circle {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes slide-and-fade {
    0% {
        transform: translate(0, -50%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translate(-200%, -50%);
        opacity: 0;
    }
} 