body{
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: linear-gradient(to bottom, #0d0d0d, #1b1b1b);
    color: #f5f5f5;
    overflow-x: hidden;
    position: relative;
}

/*Body Background*/

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('LimbusComBackground.jpg') repeat;
    opacity: 0.1;
    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(242, 164, 10);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
/*header*/
header {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 50px 30px;
    text-align: center;
    border-bottom: 2px solid rgb(109, 0, 0);
    backdrop-filter: blur(5px);
    background-image: url('LimbusCover.jpg');
    background-size: cover;
    background-position: center;
}
header ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    text-decoration: none;
}
header ul li {
    font-size:  1.1rem;
    color: rgb(83, 14, 3);
    transition: color 0.3s;
    
}
header h1 {
    font-size: 3rem;
    color: rgb(109, 0, 0);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: rgb(253, 194, 1);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    opacity: 0.9;
    
}
header p:hover {
    color: rgb(253, 194, 1);
    text-shadow: 0 0 10px rgb(253, 194, 1), 0 0 20px rgb(253, 194, 1);
    animation: glow 2s infinite alternate;}


@keyframes glow {
    0% { text-shadow: 0 0 10px rgb(213, 178, 3); }
    100% { text-shadow: 0 0 20px rgb(210, 159, 4); }
}
 /*main*/
 main{
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
 }

 section{
    margin-bottom: 60px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.11);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    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: rgb(253, 194, 1);
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(253, 194, 1);
    display: inline-block;
    padding-bottom: 5px;
 }

 .Trailer {
    text-align: center;
 }
 .trailer-video{
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(253, 194, 1, 0.836);
    transition: transform 0.3s, box-shadow 0.3s;
 }

 .trailer-video:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(207, 159, 2, 0.658);
 }

 /*summary*/
    .summary {
        background-color: rgba(255, 255, 255, 0.11);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        margin-top: 20px;
    }
 
 
 /* Footer */
    footer {
        background-color: rgba(255, 255, 255, 0.85);
        padding: 20px;
        text-align: center;
        border-top: 2px solid rgb(109, 0, 0);
        backdrop-filter: blur(5px);
        margin-top: 40px;
    }
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(253, 194, 1);
    color: #4e0202;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, box-shadow 0.3s;
}
.btn:hover {
    background-color: rgb(253, 194, 1);
    box-shadow: 0 0 10px rgb(253, 194, 1), 0 0 20px rgb(253, 194, 1);
    animation: glowBtn 2s infinite alternate;
}

@keyframes glowBtn {
    0% { box-shadow: 0 0 10px rgb(253, 194, 1); }
    100% { box-shadow: 0 0 20px rgb(253, 194, 1); }
}