body {
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.casino-front {
    position: relative;
    width: 600px;
    height: 400px;
    background: #222;
    border: 5px solid #ffd700;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    overflow: hidden;
}

.neon-sign {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    animation: neon-glow 1.5s infinite alternate;
}

@keyframes neon-glow {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.door {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform-origin: left;
    transform: translateX(-50%);
    width: 200px;
    height: 300px;
    background: #8b0000;
    border: 5px solid #ffd700;
    border-bottom: none;
    cursor: pointer;
    transition: transform 1s ease-in-out;
}

.door-handle {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
    transform: translateY(-50%);
}

.door.open {
    transform: translateX(-50%) rotateY(-90deg);
}

/* Zoom animation */
@keyframes zoom-in {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(4);
    }
}

.zoom-effect {
    animation: zoom-in 1.5s ease-in-out forwards;
}

/* Casino Room Styles */
.casino-room {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #1a1a1a;
    color: #ffd700;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.casino-room h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.casino-room p {
    font-size: 24px;
    margin-bottom: 40px;
}

/* Game Selection */
.game-selection {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.game-card {
    background: #222;
    border: 3px solid #ffd700;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.game-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 16px;
    color: #ccc;
}

/* Slots Icon */
.slots-icon {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #444;
    border-radius: 10px;
    padding: 10px;
}

.slots-icon .reel {
    width: 20px;
    height: 80px;
    background: #ffd700;
    position: relative;
}

.slots-icon .reel::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #ff00ff;
    border-radius: 50%;
}

.slots-icon .reel::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
}

/* Blackjack Icon */
.blackjack-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #000;
}

.blackjack-icon::before {
    content: "A";
    font-size: 40px;
    font-weight: bold;
    color: #000;
}

.blackjack-icon::after {
    content: "♠";
    font-size: 20px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #000;
}

/* Roulette Icon */
.roulette-icon {
    width: 100px;
    height: 100px;
    background: #8b0000;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #ffd700;
}

.roulette-icon::before {
    content: "";
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.roulette-icon::after {
    content: "";
    width: 80%;
    height: 80%;
    border: 2px dashed #ffd700;
    border-radius: 50%;
}

/* Blackjack Styles */
.blackjack-container {
    text-align: center;
    background: #1a1a1a;
    color: #ffd700;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.game-area {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 5px 0;
}

.card {
    width: 80px;
    height: 120px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    border: 2px solid #000;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card.flip {
    animation: flip 0.6s forwards;
}

.controls button {
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
    background: #ffd700;
    border: none;
    border-radius: 5px;
}

.controls button:hover {
    background: #e6b800;
}

#result {
    font-size: 24px;
    margin-top: 20px;
}

/* Slot Machine Styles */
.slot-machine {
    text-align: center;
    background: #1a1a1a;
    color: #ffd700;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.reel {
    width: 100px;
    height: 150px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    overflow: hidden;
}

#spin {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background: #ffd700;
    border: none;
    border-radius: 5px;
}

#spin:hover {
    background: #e6b800;
}

#result {
    font-size: 24px;
    margin-top: 20px;
}

@keyframes flip {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(180deg);
    }
}