@font-face {
    font-family: pm;
    src: url(PeacemakerForce-rgeKB.otf);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #02010a;
    color: #f1faee;
    font-family: 'Roboto Mono', monospace;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 1, 10, 0.8);
    z-index: -1;
}

.hero {
    height: 725px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.nav {
    position: absolute;
    top: 30px;
    right: 50px;
    display: flex;
    gap: 80px;
    position: fixed;
}
.nav a {
    color: #f1faee;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}
.nav a:hover {
    color: #ffdd1ae3;
}
.hero-text {
    position: relative;
    text-align: center;
}
.title {
    font-size: 330px;
    color: #ffdd1ae3;
    letter-spacing: 5px;
    z-index: 5;
    position: relative;
    font-family: pm;
    line-height: 0.5; 
}
.photo {
    position: absolute;
    width: 300px;
    border: 10px solid #f1faee;
    border-radius: 3px;
    transition: transform 0.4s ease, z-index 0s 0.2s;
}
.photo:hover {
    transform: scale(1.1) rotate(0deg);
    z-index: 10;
    transition: transform 0.4s ease, z-index 0s;
}
.photo-1 { 
    top: -55%; 
    left: 0%; 
    transform: translateY(40%) rotate(-25deg); 
    z-index: 1; 
}
.photo-2 { 
    top: -70%; 
    left: 35%; 
    transform: translateY(-50%) rotate(25deg); 
    z-index: 2; 
}
.photo-3 { 
    top: 5%; 
    right: 3%; 
    transform: translateX(50%) rotate(32deg); 
    z-index: 3;
}

.about {
    display: flex;
    align-items: center;
    background-color: #02010a;
    padding: 80px 60px;
    gap: 60px;
}
.about-image img {
    width: 100%;
    border: 5px solid #457b9d;
    border-radius: 10px;
}
.about-text h2 {
    font-family: pm;
    font-size: 80px;
    color: #ffdd1ae3;
    margin-bottom: 25px;
    line-height: 1;
}
.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #a8dadc;
    margin-bottom: 40px;
}
.stats { 
    display: flex; 
    gap: 30px; 
}
.stat {
    border-left: 3px solid #ffdd1ae3;
    padding-left: 20px;
}
.stat h3 { 
    font-size: 22px; 
    color: #f1faee; 
    margin-bottom: 8px;
}
.stat span { 
    font-size: 16px; 
    color: #a8dadc;
}

.team {
    padding: 40px 30px;
    background-color: #0f0f1a;
    text-align: center;
}
.team h2 {
    font-family: pm;
    font-size: 80px;
    color: #ffdd1ae3;
    margin-bottom: 20px;
}
.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: unwrap; 
}
.card {
    background-color: #1d3557;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #457b9d;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-20px);
}
.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}
.card h3 {
    font-family: pm;
    font-size: 40px;
    color: #f1faee;
    margin-bottom: 10px;
}
.card p {
    font-size: 15px;
    color: #a8dadc;
}

.soundtrack {
    padding: 60px 60px;
    position: relative;
    overflow: hidden;
    background-color: #00000025;
    text-align: center;
}
.soundtrack h2 {
    font-family: pm;
    font-size: 80px;
    color: #ffdd1ae3;
    margin-bottom: 80px;
    position: relative;
}
.music-grid {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
}
.song-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.song { 
    width: 400px;
}
.song-playlist {
    width: 500px;
}
.song iframe {
    width: 100%;
    height: 152px; 
    border-radius: 12px;
    border: none;
}
.song-playlist iframe {
    height: 352px;
}

.footer {
    padding: 15px;
    text-align: center;
    background-color: #02010a;
    border-top: 3px solid #457b9d;
    font-size: 14px;
    color: #ffdd1ae3;
}