/* Sports Betting Styles */
.sports-game-container {
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
}

.game-header {
    text-align: center;
    margin-bottom: 20px;
}

.match-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
}

.team {
    text-align: center;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s;
}

.team:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

.team img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.odds {
    font-weight: bold;
    color: #ffd700;
}

.vs {
    font-size: 24px;
    font-weight: bold;
}

.betting-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.bet-btn {
    padding: 10px 15px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.bet-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* Casino Game Styles */
.casino-game-container {
    padding: 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px;
    color: white;
}

.roulette-wheel {
    text-align: center;
}

.wheel {
    width: 200px;
    height: 200px;
    border: 5px solid #ffd700;
    border-radius: 50%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 3s ease-out;
}

.number {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.number.red {
    background: #ff0000;
    color: white;
}

.number.black {
    background: #000000;
    color: white;
}

.betting-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.bet-option {
    padding: 15px;
    background: #27ae60;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.bet-option:hover {
    background: #2ecc71;
    transform: scale(1.05);
}

/* Fishing Game Styles */
.fishing-game-container {
    padding: 20px;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    border-radius: 15px;
    color: white;
}

.fishing-area {
    position: relative;
    height: 300px;
    background: linear-gradient(to bottom, #74b9ff 0%, #0984e3 50%, #2d3436 100%);
    border-radius: 10px;
    overflow: hidden;
}

.water-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.fish {
    position: absolute;
    font-size: 24px;
    cursor: pointer;
    animation: swim 3s infinite linear;
    transition: all 0.3s;
}

.fish:hover {
    transform: scale(1.2);
}

.fish-1 { top: 20%; left: 10%; animation-delay: 0s; }
.fish-2 { top: 40%; left: 70%; animation-delay: 1s; }
.fish-3 { top: 60%; left: 30%; animation-delay: 2s; }
.fish-4 { top: 80%; left: 80%; animation-delay: 0.5s; }
.fish-5 { top: 30%; left: 50%; animation-delay: 1.5s; }
.fish-6 { top: 70%; left: 20%; animation-delay: 2.5s; }
.fish-7 { top: 50%; left: 90%; animation-delay: 3s; }
.fish-8 { top: 10%; left: 60%; animation-delay: 0.8s; }

@keyframes swim {
    0% { transform: translateX(0); }
    50% { transform: translateX(20px); }
    100% { transform: translateX(0); }
}

.fishing-rod {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.cast-button {
    padding: 10px 20px;
    background: #e17055;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.fishing-stats {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    font-weight: bold;
}

/* Popular Game Styles */
.popular-game-container {
    padding: 20px;
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    border-radius: 15px;
    color: white;
}

.spin-wheel-game {
    text-align: center;
}

.wheel-container {
    position: relative;
    display: inline-block;
}

.wheel {
    width: 200px;
    height: 200px;
    border: 5px solid #ffd700;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
    background: conic-gradient(#ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff, #5f27cd);
    position: relative;
}

.segment {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-size: 12px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
}

.segment:nth-child(1) { top: 10px; left: 50%; transform: translateX(-50%); }
.segment:nth-child(2) { top: 25px; right: 25px; }
.segment:nth-child(3) { top: 50%; right: 10px; transform: translateY(-50%); }
.segment:nth-child(4) { bottom: 25px; right: 25px; }
.segment:nth-child(5) { bottom: 10px; left: 50%; transform: translateX(-50%); }
.segment:nth-child(6) { bottom: 25px; left: 25px; }
.segment:nth-child(7) { top: 50%; left: 10px; transform: translateY(-50%); }
.segment:nth-child(8) { top: 25px; left: 25px; }

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #ffd700;
}

.spin-btn {
    margin-top: 20px;
    padding: 15px 30px;
    background: #ffd700;
    color: #333;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.spin-btn:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

.lucky-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.lucky-box {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.lucky-box:hover {
    transform: scale(1.05);
}

.lucky-box.opened {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.box-prize.hidden {
    display: none;
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.number-cell {
    aspect-ratio: 1;
    background: #6c5ce7;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.number-cell:hover {
    background: #a29bfe;
    transform: scale(1.1);
}

.number-cell.selected {
    background: #00b894;
}

/* PVC Game Styles */
.pvc-game-container {
    padding: 20px;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    border-radius: 15px;
    color: white;
}

.player-vs-computer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
}

.player-side, .computer-side {
    text-align: center;
}

.player-choice, .computer-choice {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    font-size: 24px;
}

.vs-divider {
    font-size: 24px;
    font-weight: bold;
}

.game-choices {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}

.choice-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    border-radius: 15px;
    padding: 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.choice-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

.choice-icon {
    font-size: 30px;
    margin-bottom: 5px;
}

.game-result {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
    padding: 10px;
    border-radius: 8px;
}

.game-result.win {
    background: rgba(0, 184, 148, 0.3);
}

.game-result.lose {
    background: rgba(255, 107, 107, 0.3);
}

.game-result.tie {
    background: rgba(255, 202, 87, 0.3);
}

/* Common Styles */
.amount-selector, .bet-controls, .bet-amount {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.amount-selector input[type="radio"],
.bet-controls input[type="radio"],
.bet-amount input[type="radio"] {
    display: none;
}

.amount-selector label,
.bet-controls label,
.bet-amount label {
    padding: 8px 15px;
    background: rgba(255,255,255,0.2);
    border: 2px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    font-weight: bold;
}

.amount-selector input[type="radio"]:checked + label,
.bet-controls input[type="radio"]:checked + label,
.bet-amount input[type="radio"]:checked + label {
    background: #ffd700;
    color: #333;
    border-color: #ffd700;
}

.round-info, .fishing-stats, .draws-left, .selected-numbers {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    font-weight: bold;
}

.play-btn {
    width: 100%;
    padding: 15px;
    background: #ffd700;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .match-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .betting-options {
        flex-direction: column;
    }
    
    .player-vs-computer {
        flex-direction: column;
        gap: 20px;
    }
    
    .game-choices {
        flex-direction: column;
        gap: 15px;
    }
    
    .amount-selector, .bet-controls, .bet-amount {
        flex-direction: column;
        align-items: center;
    }
}