* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9; /* Slightly softer background */
    padding: 20px;
    line-height: 1.6;
}

header {
    text-align: center;
    color: rgb(55, 110, 250);
    margin: 40px 0 10px;
    font-family: "Sedgwick Ave", cursive;
}

h1 {
    font-size: clamp(3.5rem, 12vw, 6rem); 
}

p {
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    margin-bottom: 0px;
}

/* Links Section */
.links {
    text-align: center;
    margin-bottom: 40px;
}

.links a {
    display: inline-block;
    vertical-align: top;
    margin: 10px;
    width: 90px;
    height: 65px;
    padding: 15px 10px;
    
    /* Styling */
    color: #2d2d2d;
    background-color: #ffffff;
    text-decoration: none;
    font-family: "Bangers", system-ui;
    font-size: 1.2rem;
    border: 3px solid #2d2d2d;
    border-radius: 15px;
    box-shadow: 6px 6px 0px #2d2d2d;
    transition: all 0.15s ease-in-out;
}

.links a i {
    display: block;
    font-size: 2.2rem;
    line-height: 1;    
    margin-bottom: 4px;  
}

.bn {
    display: block;
    width: 25px;
    height: auto;
    margin: 0 auto 4px; 
}

.links a:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #2d2d2d;
}

/* Video Grid Layout */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px;
    max-width: 800px; 
    margin: 0 auto 50px;
}

.video-container {
    width: 100%; 
    aspect-ratio: 1 / 1; 
    background-color: #000;
    border-radius: 20px;
    border: 3px solid #2d2d2d;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 600px;
    }
}