a {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
}

p {
    margin: 10px 0px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
}
.box-content {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}
.hide-scrollbar {
    overflow: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 1% 0;
    padding: 2% 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298); 
    color: white;
    border: none;
    border-radius: 50px; 
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}
.btn:hover {
    background: linear-gradient(135deg, #2a5298, #3a7bd5);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.35),
        0 0 0 2px rgba(64, 158, 255, 0.4);
}
.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #1a3366, #254a80);
}
.movie-card {
    margin: 2% 2%;
    width: 23%;
    flex-shrink: 0;
    border: 1px solid #172c55;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: #1a3366;
}
.movie-cards {
    display: flex;
    align-items: center;
    margin: 0% 3%;
    width: 94%;
    border: 1px solid #172c55;
    border-radius: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: #112141;
    padding-bottom: 10px;
}
.gradient-rectangle {
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, #000000, #020B2C);
}
html {
    scroll-behavior: smooth;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.down {
    opacity: 0.1;
}
.down:hover {
    opacity: 1;
}
in {
    height:90%;
    opacity: 0;
    font-family:'Arial';
}
.neon {  
    font-size: 4rem;  
    color: #85BBFF; 
    text-shadow: 0 0 5px #0015FF, 0 0 10px #0015FF, 0 0 20px #0015FF, 0 0 40px #7b08ff, 0 0 60px #7b08ff, 0 0 100px #7b08ff;  
    font-family: Arial, sans-serif;  
}  
.rubrics-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #1a3366;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 10%;
    box-sizing: border-box;
}
