/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#status {
    display: flex;
    margin-top: 20px;
}

#status span {
    width: 10px;
    height: 10px;
    background: #e50914;
    border-radius: 50%;
    margin: 0 5px;
    animation: pulse 1.2s infinite ease-in-out;
}

#status span:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Header Styles */
.ht-header {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s;
}

.ht-header.scrolled {
    background: rgba(0, 0, 0, 0.9);
}

.navbar-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-header {
    display: flex;
    align-items: center;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-right: 15px;
}

.navbar-toggle span {
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s;
}

.navbar-nav {
    display: flex;
    list-style: none;
}

.navbar-nav li {
    margin: 0 15px;
}

.navbar-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.navbar-nav a:hover {
    color: #e50914;
}

/* Search Form */
.top-search {
    display: flex;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.top-search select {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    outline: none;
}

.top-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #fff;
    outline: none;
}

.top-search button {
    background: #e50914;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

/* Main Content */
.py-2 {
    padding: 120px 0 60px;
}

.content {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.content h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content h2 {
    color: #e50914;
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

.content p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.content ul {
    color: #ccc;
    margin: 15px 0;
    padding-left: 20px;
}

.content li {
    margin-bottom: 8px;
}

.content img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.view-official {
    margin: 20px 0;
}

.view-official a {
    display: inline-block;
    background: #e50914;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.view-official a:hover {
    background: #f40612;
}

/* Footer */
.ht-footer {
    background: #000;
    padding: 30px 0;
    margin-top: 60px;
}

.ft-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft-left p {
    color: #ccc;
}

.backtotop a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.backtotop a:hover {
    color: #e50914;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
    }
    
    .navbar-nav.active {
        display: flex;
    }
    
    .navbar-nav li {
        margin: 10px 0;
    }
    
    .ft-copyright {
        flex-direction: column;
        text-align: center;
    }
    
    .backtotop {
        margin-top: 15px;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
}