html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* Updated to use New Colors: Blue to Orange Gradient */
    background-image: linear-gradient(135deg, #0e397a 0%, #264e8a 50%, #e26811 100%);
    color: #fff;
    overflow-x: hidden;
}

.home {
    width: 100%;
    /* Updated to Orange with transparency */
    background-color: rgba(226, 104, 17, 0.9);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.home a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.2);
}

.home a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

h1 {
    font-size: 2.5em;
    margin: 40px 0;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.spotlight-group {
    background: rgba(255, 255, 255, 0.15);
    padding: 60px 20px;
    margin: 30px auto;
    max-width: 1200px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

a {
    display: inline-block;
    transition: all 0.3s ease;
}

b {
    display: block;
    padding: 15px;
    /* Keep white text on semi-transparent background for contrast */
    background: rgba(14, 57, 122, 0.4); 
    margin: 15px auto;
    max-width: 80%;
    border-radius: 8px;
    font-weight: normal;
    font-size: 1.1em;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button {
    padding: 12px 30px;
    /* Gradient using the two new colors */
    background: linear-gradient(to right, #e26811, #ff822d);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(226, 104, 17, 0.4);
    margin: 10px;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(226, 104, 17, 0.6);
    background: linear-gradient(to right, #ff822d, #e26811);
}

img, .image {
    width: 30vw;
    max-width: 300px;
    margin: 2vh 1vw;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.image {
    display: inline-block;
    height: 20vw;
    max-height: 200px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.spotlight.image {
    cursor: pointer;
}

.spotlight.image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    img, .image {
        width: 45vw;
        height: 35vw;
    }
    
    .spotlight-group {
        padding: 30px 10px;
        margin: 15px;
    }
}

/* Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}