html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* NEW COLORS: Gradient from bright red to vivid yellow */
    background-image: linear-gradient(to bottom, #f00000 11%, #fdf10a 132%);
    color: #ffffff; /* White text for better contrast */
}

.home {
    width: 100%;
    /* NEW COLORS: Vivid yellow band with slight transparency */
    background-color: rgba(253, 241, 10, 0.9); /* #fdf10a with 90% opacity */
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.home a {
    display: inline-block;
    padding: 5px 20px;
    /* NEW COLORS: Bright red text on yellow background */
    color: #f00000;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.home a:hover {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

h1 {
    display: block;
    font-size: 3.5em;
    margin: 0.67em auto;
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
    /* NEW COLORS: Vivid yellow for main heading */
    color: #fdf10a;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

img,
.image {
    width: 30vw;
    max-width: 300px;
    margin: 1.5vh 1.5vw;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

img {
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

.image {
    display: inline-block;
    height: 20vw;
    max-height: 200px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.spotlight-group {
    /* NEW COLORS: Bright red with transparency */
    background: rgba(240, 0, 0, 0.8); /* #f00000 with 80% opacity */
    padding: 60px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2vw;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
}

a {
    display: inline-block;
}

b {
    display: block;
    padding: 12px 20px;
    /* NEW COLORS: Vivid yellow with transparency */
    background: rgba(253, 241, 10, 0.7); /* #fdf10a with 70% opacity */
    color: #f00000; /* Bright red text */
    font-weight: bold;
    margin-top: 10px;
    border-radius: 5px;
}

button {
    padding: 10px 25px;
    /* NEW COLORS: Bright red background, vivid yellow text and border */
    background-color: #f00000;
    color: #fdf10a;
    border: 2px solid #fdf10a;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

button:hover {
    background-color: #fdf10a; /* Vivid yellow background on hover */
    color: #f00000; /* Bright red text on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.spotlight.image {
    cursor: pointer;
}

.spotlight.image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}