
    /* General Styles */
    body {
        font-family: 'Poppins', sans-serif;
        background-color: #f4f4f9;
        text-align: center;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-image: url(../img/rcp.jpeg);
        background-size: cover;
        background-position: center;
        color: #ffffff;
        height: 100vh;
    }
    
    h1 {
        margin-bottom: 20px;
        font-size: 3rem;
        color: #fff;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        text-transform: uppercase;
        font-weight: 600;
    }
    
    /* Screen Container */
    .screen {
        max-width: 100%;
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.6);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        position: absolute;
        top: -100%;
        left: 50%;
        transform: translateX(-50%);
        transition: top 1s ease-in-out;
        backdrop-filter: blur(10px);
        height: 80vh;
        width: 80vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .screen.active {
        top: 10%;
    }
    
    .screen.hidden {
        display: none;
    }
    
    /* Choices (Buttons) */
    .choices {
        display: flex;
        justify-content: space-around;
        margin: 40px 0;
    }
    
    .choice {
        background: linear-gradient(135deg, #ff512f, #f09819);
        color: white;
        border: none;
        padding: 20px 40px;
        border-radius: 50px;
        font-size: 1.5rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
    .choice:hover {
        transform: scale(1.1);
        background: linear-gradient(135deg, #f09819, #ff512f);
    }
    
    .choice:active {
        transform: scale(1);
        box-shadow: none;
    }
    
    /* Start Button Styling */
    #start-game{
        font-size: 2rem;
    }
    #start-game,#home-button  {
        background: linear-gradient(135deg, #6a11cb, #2575fc);
        color: white;
        padding: 20px 50px;
        border-radius: 50px;
        
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
   
    #start-game:hover ,#home-button:hover {
        background: linear-gradient(135deg, #2575fc, #6a11cb);
        transform: scale(1.05);
    }
    
    #start-game:hover ,#home-button:active {
        transform: scale(1);
    }
    
    /* Battle Animation */
    .battle {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px 0;
    }
    
    .fighter {
        font-size: 4rem;
        transition: transform 0.6s ease, color 0.6s ease;
    }
    
    .vs {
        font-size: 2.5rem;
        margin: 0 15px;
        color: #f5f5f5;
        text-transform: uppercase;
        font-weight: bold;
    }
    
    .winner {
        transform: scale(1.4);
        color: #4caf50; /* Green for winner */
    }
    
    .loser {
        opacity: 0.5;
        color: #f44336; /* Red for loser */
    }
    
    /* Skyshot Effect */
    #skyshot-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1000;
        overflow: hidden;
    }
    
    .skyshot {
        position: absolute;
        bottom: 0;
        width: 10px;
        height: 10px;
        background: radial-gradient(circle, #ffcf33 0%, #ff9f00 100%);
        border-radius: 50%;
        animation: shoot 2s ease-out forwards;
    }
    
    @keyframes shoot {
        0% {
            transform: translateY(0) scale(1);
            opacity: 1;
        }
        70% {
            opacity: 1;
        }
        100% {
            transform: translateY(-100vh) scale(0.5);
            opacity: 0;
        }
    }
    
    /* Hidden Screen */
    .screen.hidden {
        display: none;
    }
    
    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .choices {
            flex-direction: column;
            gap: 15px;
            
        }
    
        .choice {
            padding: 15px 30px;
            font-size: 1.2rem;
           
        }
    
        h1 {
            font-size: 2rem;
        }
    
        .fighter {
            font-size: 2.5rem;
        }
    
        .vs {
            font-size: 1.5rem;
        }
    
        #start-button {
            font-size: 1.5rem;
            padding: 15px 40px;
        }
    }
    