body {
    background: linear-gradient(90deg, #0a0f3c, #200461);
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 80px;
}

.container {
    width: 60%;
    margin: auto;
}

button {
    background: #0a39bd;
    color: white;
    padding: 12px 20px;
    margin: 10px;
    border: 2px solid #0a0f3c;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background: #0a0f3c;
    border-color: #3a0ca3;
}

.video-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #0a0f3c, #4e13d8); /* your blue-purple gradient */
    color: white;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 20px;
    margin: 25px 0; /* spacing between buttons */
    width: fit-content;
    border: 2px solid #FF0000; /* YouTube red border */
    transition: 0.3s;
}

.video-button:hover {
    background: linear-gradient(90deg, #4e13d8, #0a0f3c); /* reverse gradient on hover */
    border-color: #cc0000; /* darker red */
}

/* YouTube logo */
.video-button img {
    width: 28px;
    height: 28px;
}

/* Right side */
.right {
    margin-left: auto;
    margin-right: 40px;
}

/* Left side */
.left {
    margin-left: 40px;
}

.staff-button {
    background: linear-gradient(90deg, #0a0f3c, #4e13d8);
    color: white;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    margin: 20px 0;
    width: fit-content;
    transition: 0.3s;
}

.staff-button:hover {
    background: linear-gradient(90deg, #4e13d8, #0a0f3c);
}

/* Modal background */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

/* Modal box */
.modal-content {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    color: white;
}

.modal-content img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.close-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #4e13d8;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.staff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.staff-button {
    background: linear-gradient(90deg, #0a0f3c, #4e13d8);
    color: white;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.staff-button:hover {
    background: linear-gradient(90deg, #4e13d8, #0a0f3c);
}

/* Modal background */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

/* Modal box */
.modal-content {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    color: white;
}

.modal-content img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.close-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #4e13d8;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}



.footer {
    width: 100%;
    background: black;
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    position: fixed;
    bottom: 0;
    left: 0;
}
