*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Body styles*/
body{
    font-family: "Poppins", sans-serif;
   background: -moz-linear-gradient(top, #121212, #000000);
    margin: 0;
    overflow-x: hidden;
    position: relative;

 }
 body:before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('TakopiBackground.jpg') repeat;
    opacity: 0.4;
    animation: drift 120s linear infinite;
    pointer-events: none;
    z-index: -1;

 }
 
 @keyframes drift {
    0% { background-position: 0 0; }
    100% { background-position: 10000px 5000px; }
 }

a{
    color: rgb(255, 0, 221);
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
    color: #7304a7;
}
h1{
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 4px #000000;
    font-size: 3rem;
    margin-bottom: 10px;

    
}



/*Title Card*/
 .TitleCard{
    background-color: rgba(174, 0, 255, 0.85);
    padding: 50px 30px;
    text-align: center;
    border-bottom: 2px solid #190227;
    backdrop-filter: blur(5px);
    background-image: url('Takopi.jpg');
    background-size: cover;
    background-position: center;
}

.HomelistNav{
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    text-decoration: none;
}
.HomelistNav li{
    font-size: 1.1rem;
    color: rgb(255, 0, 195);
    transition: color 0.3s;
}

.HomelistNav li:hover{
    color: #ffffff;
}

.TitleCard h1{
    font-size: 3rem;
    margin: 0;
    color: rgb(255, 255, 255);
}
 
/*trailer and main content*/
main{
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
  }
  
  section:nth-of-type(1) { animation-delay: 0.3s; }
  section:nth-of-type(2) { animation-delay: 0.6s; }
  
  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }
h2 {
    color: #e9c4c4;
    margin-bottom: 20px;
    border-bottom: 2px solid #fb13ff;
    display: inline-block;
    padding-bottom: 10px;
    cursor: pointer;
  }
  h2:hover {
    color: #ffffff;
    border-color: #ffffff;
  }
  section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgb(255, 255, 255);
    margin-top: 20px;}


.trailer-video{
    width: 100%;
    max-width: 800px;
    height: 490px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgb(51, 0, 0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trailer-video:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgb(255, 6, 172);
}

.Summary{
    font-size: 1.5rem;
    line-height: 1.4;
    color: rgb(255, 255, 255);
    border: #6403a4 2px solid;
    margin: 20px 0;
    padding: 30px 0;
    background-color: #e309ac;
    cursor: pointer;
    border-radius: 10px;
    
    

}
.Summary:hover{
    background-color: #6202b6;
    color: rgb(255, 255, 255);
}
