:root {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --red-accent: #ff4141;
    --blue-accent: #3b82f6;
    --font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 100px;
}

p {
    font-size: 1.5rem;   /* about 19px */
    line-height: 1.6;    /* keeps it readable */
    margin: 0.5rem 0;    /* space above/below */
}


.content-wrapper {
    flex-grow: 1;
}

.firetopbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image_7f1b40.png') no-repeat center center / cover;
    padding: 2rem 0;
}

.firetopbox h1 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.modern-red {
    color: var(--red-accent);
}

.modern-white {
    color: var(--text-color);
}

.img-small {
    width: 230px;
    margin-top: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--text-color);
    transition: transform 0.3s ease;
}

.img-small:hover {
    transform: scale(1.05);
}


.flag {
     display: flex;
     background-image: url("/flag.svg");
     background-size: cover;
     background-position: left;
     background-attachment: fixed;
     max-width: 100vw;
     justify-content: center;
     flex-direction: column;

}


.about {
    display: flex;
    height: 400px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    aspect-ratio: 16 / 9;
    color: #fff;
    max-width: 100vw;
}

.about-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.about-title-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red-accent);
    margin: 0;
    text-transform: uppercase;
}

.about p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.border {
    background-color: var(--color);
    width: 100vw;
    height: 50px;
}

.team {
  
  display: flex;
  background-color: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
  align-items: center;
  height: 400px;
}

  #youtube-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
  }
  iframe {
    width: 100%;
    height: 200px;
    border: none;
  }

.box {
  display: flex;       
  width: 80vw;       
  height: 200px;       
  border: 2px solid black;
}

.left,
.right {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column; /* stack items top-to-bottom */
  justify-content: flex-start; /* stick to top */
  align-items: center; /* center horizontally */
  padding: 10px;
  font-size: 0.1;
}

.left {
  background: rgb(65, 67, 68);
  border-right: 2px solid black; /* divider */
}

.right {
  background: rgb(41, 38, 38);
}

   



.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    color: var(--red-accent);
    padding: 2rem 0;
    
}



.recommendations {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    background-color: var(--red-accent);
    margin-top: 200px;
}

.recommendations-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: var(--text-color);
    color: var(--red-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recommendations-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

    .about {
    display: flex;
    height: 350px;
    background-image: url("/flag.svg");
    justify-content: center;
    background-size: cover;
    background-position: left;
    background-attachment: fixed;
    text-align: center;
    padding: 2rem;
    aspect-ratio: 16 / 9;
    color: #fff;
}
    
}


