* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    position: relative;
}

/* Animated stars background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: transparent;
    animation: stars 10s linear infinite;
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-1000px); }
}

.glowing-title {
    text-align: center;
    font-size: 3em;
    margin: 30px 0;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #fff, 0 0 20px #fff; }
    to { text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6; }
}

.game-container {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Player Section */
.player-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input {
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.1em;
    background: rgba(255, 255, 255, 0.9);
}

.stats-card {
    background: rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
}

.stat {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 1.2em;
}

.stat-value {
    font-weight: bold;
    color: #FFD700;
}

.prize-board {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.prize-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.prize-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Wheel Section */
.wheel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.wheel-container {
    position: relative;
    width: 500px;
    height: 500px;
}

#wheel {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.3));
    transition: transform 0.3s;
}

#wheel:hover {
    transform: scale(1.02);
}

.pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    filter: drop-shadow(0 0 10px gold);
    z-index: 10;
    animation: bounce 1s infinite;
}

.button-container {
    display: flex;
    gap: 15px;
}

.spin-btn, .reset-btn {
    padding: 15px 30px;
    font-size: 1.3em;
    font-family: 'Comic Neue', cursive;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.spin-btn {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
}

.reset-btn {
    background: linear-gradient(45deg, #48dbfb, #1dd1a1);
    color: white;
}

.spin-btn:hover, .reset-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.result-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    text-align: center;
    font-size: 1.2em;
    transition: all 0.3s;
}

.result-box.celebrate {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

/* Leaderboard Section */
.leaderboard-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
}

.leaderboard {
    margin-top: 15px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
    border-radius: 10px;
    animation: slideIn 0.5s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.medal {
    font-size: 1.5em;
}

.winner-name {
    flex: 1;
    font-weight: bold;
}

.winner-prize {
    color: #FFD700;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 15% auto;
    padding: 30px;
    border-radius: 20px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideDown 0.5s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

.close:hover {
    color: #ff6b6b;
}

.won-prize {
    font-size: 2em;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.points {
    font-size: 1.5em;
    color: #FFD700;
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .game-container {
        grid-template-columns: 1fr;
    }
    
    .wheel-container {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 600px) {
    .glowing-title {
        font-size: 2em;
    }
    
    .wheel-container {
        width: 300px;
        height: 300px;
    }
    
    .button-container {
        flex-direction: column;
    }
}
/* Add these to your existing style.css */

.game-code {
    text-align: center;
    font-size: 1.5em;
    margin: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.code {
    font-size: 2em;
    font-weight: bold;
    color: #FFD700;
    margin: 0 15px;
}

.copy-btn {
    padding: 10px 20px;
    font-size: 1em;
    background: #4ECDC4;
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.copy-btn:hover {
    transform: scale(1.1);
}

.game-container {
    display: grid;
    grid-template-columns: 300px 1fr 350px;
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Players Panel */
.players-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
}

.players-list {
    max-height: 300px;
    overflow-y: auto;
    margin: 15px 0;
}

.player-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    margin: 8px 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s;
    position: relative;
}

.player-name {
    flex: 1;
    font-weight: bold;
}

.player-eidi {
    color: #FFD700;
    font-weight: bold;
}

.current-turn {
    font-size: 1.2em;
    animation: bounce 1s infinite;
}

.remove-btn {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 1.2em;
    padding: 0 5px;
}

.remove-btn:hover {
    transform: scale(1.2);
}

.add-player {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.add-player input,
.add-player select {
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-family: 'Comic Neue', cursive;
    flex: 1;
}

.add-btn, .start-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.add-btn {
    background: #4ECDC4;
    color: white;
}

.start-btn {
    background: #FFD700;
    color: #333;
    width: 100%;
    font-size: 1.2em;
    margin-top: 10px;
}

.start-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.add-btn:hover, .start-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

/* Game Area */
.game-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.current-player-info {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 30px;
    width: 100%;
    text-align: center;
}

.pot-amount {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 10px;
}

/* Puzzle Area */
.puzzle-area {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
}

.puzzle-category {
    color: #FFD700;
    font-size: 1.2em;
    margin: 10px 0;
}

.puzzle-hint {
    font-style: italic;
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.puzzle-word {
    font-size: 2.5em;
    letter-spacing: 10px;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.guess-area, .guess-word-area {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.guess-area input,
.guess-word-area input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    text-align: center;
}

.guess-btn, .guess-word-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.guess-btn {
    background: #4ECDC4;
    color: white;
}

.guess-word-btn {
    background: #FFD700;
    color: #333;
}

.guess-btn:hover, .guess-word-btn:hover {
    transform: scale(1.05);
}

.wrong-letters {
    margin: 15px 0;
    color: #ff6b6b;
    font-size: 1.1em;
}

.puzzle-points {
    text-align: center;
    font-size: 1.2em;
    color: #FFD700;
}

/* Task Area */
.task-area {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
}

.task-card {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.5em;
    margin: 20px 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.task-controls {
    display: flex;
    gap: 10px;
}

.complete-task-btn, .skip-task-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.complete-task-btn {
    background: #4ECDC4;
    color: white;
}

.skip-task-btn {
    background: #ff6b6b;
    color: white;
}

.complete-task-btn:hover, .skip-task-btn:hover {
    transform: translateY(-2px);
}

/* Leaderboard Area */
.leaderboard-area {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
}

.leaderboard {
    margin-top: 15px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
    border-radius: 8px;
    animation: slideIn 0.3s;
}

.medal {
    font-size: 1.5em;
    width: 40px;
}

.puzzles-solved {
    background: #4ECDC4;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.9em;
}

/* Task Modal */
.task-modal {
    max-width: 400px;
    text-align: center;
}

.task-emoji {
    font-size: 4em;
    margin: 20px 0;
    animation: bounce 1s infinite;
}

.task-text {
    font-size: 1.8em;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.task-player {
    font-size: 1.3em;
    color: #FFD700;
    margin: 15px 0;
}

/* Result box types */
.result-box.win {
    background: rgba(76, 175, 80, 0.3);
    border: 2px solid #4CAF50;
}

.result-box.lose {
    background: rgba(244, 67, 54, 0.3);
    border: 2px solid #f44336;
}

.result-box.info {
    background: rgba(33, 150, 243, 0.3);
    border: 2px solid #2196F3;
}

/* Responsive */
@media (max-width: 1200px) {
    .game-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .puzzle-word {
        font-size: 1.5em;
        letter-spacing: 5px;
    }
    
    .guess-area, .guess-word-area {
        flex-direction: column;
    }
}
/* Add to existing style.css */

/* Landing Page */
.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.landing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    width: 100%;
    margin-top: 40px;
}

.create-game, .join-game {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.create-game h2, .join-game h2 {
    margin-bottom: 20px;
    color: #FFD700;
}

.create-game input,
.join-game input,
.join-game select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.1em;
}

.create-btn, .join-btn {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.create-btn {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
}

.join-btn {
    background: linear-gradient(45deg, #4ECDC4, #45B7D1);
    color: white;
}

.create-btn:hover, .join-btn:hover {
    transform: translateY(-3px);
}

.or-divider {
    text-align: center;
    font-size: 1.5em;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 20px;
}

/* Game Page */
.game-page {
    padding: 20px;
}

.game-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 20px;
}

.connection-status {
    font-size: 1.2em;
}

.invite-btn {
    padding: 10px 20px;
    background: #FFD700;
    border: none;
    border-radius: 25px;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.invite-btn:hover {
    transform: scale(1.05);
}

/* Game Container */
.game-container {
    display: grid;
    grid-template-columns: 300px 1fr 350px;
    gap: 20px;
    height: calc(100vh - 150px);
}

/* Players Panel */
.players-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    overflow-y: auto;
}

.players-list {
    max-height: 400px;
    overflow-y: auto;
    margin: 15px 0;
}

.player-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    margin: 10px 0;
    border-radius: 12px;
    position: relative;
}

.player-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.player-name {
    font-weight: bold;
    font-size: 1.1em;
}

.player-stats {
    display: flex;
    gap: 15px;
    font-size: 0.9em;
}

.turn-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FFD700;
    color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    animation: bounce 1s infinite;
}

.current-turn-box {
    background: rgba(255, 215, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2em;
    margin-top: 15px;
}

/* Game Area */
.game-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pot-display {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.wheel-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
}

#wheel {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.3));
    border-radius: 50%;
}

.pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 50px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
    z-index: 10;
    animation: bounce 1s infinite;
}

.spin-btn {
    padding: 15px 40px;
    font-size: 1.8em;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.spin-btn:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.result-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    text-align: center;
    min-height: 80px;
    transition: all 0.3s;
}

.result-box.win {
    background: rgba(76, 175, 80, 0.3);
    border: 2px solid #4CAF50;
}

.result-box.lose {
    background: rgba(244, 67, 54, 0.3);
    border: 2px solid #f44336;
}

.result-box.info {
    background: rgba(33, 150, 243, 0.3);
    border: 2px solid #2196F3;
}

/* Interaction Panel */
.interaction-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Puzzle Area */
.puzzle-area, .task-area, .chat-area {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.puzzle-word-display {
    font-size: 2.2em;
    letter-spacing: 10px;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
}

.guess-controls, .guess-word-controls {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.guess-controls input,
.guess-word-controls input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.1em;
    text-align: center;
}

.guess-btn, .guess-word-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.guess-btn {
    background: #4ECDC4;
    color: white;
}

.guess-word-btn {
    background: #FFD700;
    color: #333;
}

.guess-btn:hover, .guess-word-btn:hover {
    transform: scale(1.05);
}

/* Task Area */
.task-card {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.8em;
    margin: 20px 0;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.task-controls {
    display: flex;
    gap: 10px;
}

.complete-task-btn, .skip-task-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.complete-task-btn {
    background: #4ECDC4;
    color: white;
}

.skip-task-btn {
    background: #ff6b6b;
    color: white;
}

.complete-task-btn:hover, .skip-task-btn:hover {
    transform: translateY(-2px);
}

/* Chat Area */
.chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
    margin: 15px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.chat-messages div {
    margin: 8px 0;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.chat-input {
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 20px;
    font-family: 'Comic Neue', cursive;
}

.send-btn {
    padding: 10px 20px;
    background: #FFD700;
    border: none;
    border-radius: 20px;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.send-btn:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1400px) {
    .game-container {
        grid-template-columns: 250px 1fr 300px;
    }
    
    .wheel-wrapper {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .game-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .wheel-wrapper {
        width: 400px;
        height: 400px;
    }
    
    .spin-btn {
        font-size: 1.4em;
        padding: 12px 30px;
    }
}

@media (max-width: 600px) {
    .landing-options {
        grid-template-columns: 1fr;
    }
    
    .wheel-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .puzzle-word-display {
        font-size: 1.5em;
        letter-spacing: 5px;
    }
}