body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* NAVBAR */
.navbar {
    width: 100%;
    background: linear-gradient(to right, #5a0000, #b30000);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-sizing: border-box;
}

.navbar h1 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a.button {
    border: 1px solid white;
    padding: 5px 10px;
    border-radius: 20px;
}

.hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: white;
  }

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 800px;
    color: white;
    z-index: 2;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: white;
  }

/* LOGO */
.logo {
    margin: 20px auto;
    width: 300px;
}

.logo img {
    width: 100%;
    mix-blend-mode: multiply;
    background: transparent;
}

/* TEXT SECTION */
.section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.section h2 {
    color: #b30000;
}

/* STATS */
.stats {
    background: linear-gradient(to right, #5a0000, #b30000);
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 30px 10px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    margin: 10px;
}

.stat h3 {
    font-size: 30px;
    margin: 0;
}

/* VIDEOS */
.video-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px;
}

video {
    width: 30%;
    min-width: 250px;
    border-radius: 10px;
    border: 2px solid #b30000;
}

/* COMMENTS */
.comments {
    width: 80%;
    max-width: 800px;
    background: white;
    padding: 20px;
    margin: 40px auto;
    border-radius: 8px;
}

.comment {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

textarea {
    width: 100%;
    height: 80px;
}

button {
    background: #b30000;
    color: white;
    border: none;
    padding: 8px 12px;
    margin-top: 5px;
    cursor: pointer;
}