/* static/css/style.css */

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background: #000000;
    color: #FFFFFF;
}

.container {
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px;
    max-width: 100%;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 20;
    max-width: 100%;
}

.nav-logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #CE052D;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    min-width: 160px;
    z-index: 10;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dropdown-content a {
    display: block;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.hamburger span {
    background: #FFFFFF;
    height: 3px;
    width: 100%;
    transition: all 0.3s ease;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 20px;
    z-index: 10;
    max-width: 100%;
}

.nav-dropdown.active {
    display: flex;
}

.nav-dropdown a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-dropdown a:hover, .nav-dropdown a.active {
    color: #CE052D;
}

.nav-dropdown .dropdown {
    width: 100%;
}

.nav-dropdown .category-toggle {
    display: block;
    padding: 10px;
}

.nav-dropdown .dropdown-content {
    position: static;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

.nav-dropdown .dropdown-content.active {
    display: block;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #000000;
    padding: 10px 0;
    border-top: 1px solid #333;
    z-index: 10;
    max-width: 100%;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #808080;
    text-decoration: none;
    font-size: 12px;
    flex: 1;
    max-width: 20%;
}

.bottom-nav-item.active {
    color: #CE052D;
}

.bottom-nav-item i {
    font-size: 24px;
    margin-bottom: 4px;
}

.bottom-nav-dropdown {
    position: relative;
}

.bottom-nav-dropdown-content {
    display: none;
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px;
    z-index: 10;
}

.bottom-nav-dropdown-content.active {
    display: block;
}

.bottom-nav-dropdown-content a {
    display: block;
    color: #FFFFFF;
    padding: 10px;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.bottom-nav-dropdown-content a:hover {
    color: #CE052D;
}

.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: #1C1C1C;
    padding-top: 20px;
    z-index: 10;
}

.sidebar-item {
    display: block;
    padding: 15px 20px;
    color: #808080;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.sidebar-item.active {
    color: #CE052D;
    background: #2A2A2A;
}

.sidebar-item i {
    margin-right: 10px;
}

.sidebar-dropdown {
    position: relative;
}

.sidebar-dropdown-content {
    display: none;
    background: #2A2A2A;
    padding-left: 20px;
}

.sidebar-dropdown-content.active {
    display: block;
}

.sidebar-dropdown-content a {
    display: block;
    padding: 10px;
    color: #808080;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.sidebar-dropdown-content a:hover {
    color: #CE052D;
}

.main-content {
    margin: 0;
    max-width: 100%;
}

.content-box {
    max-width: 1200px;
    margin: 0 auto;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.back-button span {
    color: #FFFFFF;
    font-size: 20px;
}

.error {
    color: #CE052D;
    text-align: center;
}

/* Form Box for Signup and Login */
.form-box {
    position: relative;
    z-index: 2;
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin: 40px auto;
    overflow: hidden;
}

.form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.54);
    z-index: 1;
}

.form-box > div {
    position: relative;
    z-index: 2;
}

.form-box h2 {
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 20px;
}

.form-box .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-box .form-group label {
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}

.form-box .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 16px;
}

.form-box button {
    width: 40%;
    padding: 16px;
    background-color: #CE052D;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.form-box .error {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #FF4444;
    text-align: center;
}

.form-box .success {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #44FF44;
    text-align: center;
}

.form-box p {
    margin-top: 20px;
    color: #FFFFFF;
}

.form-box .link {
    color: #CE052D;
    text-decoration: none;
}

/* Home Page */
.home-content {
    background: #000000;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 70vh;
}

.banner-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banners {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.banner {
    width: 100%;
    height: 70vh;
    flex-shrink: 0;
}

.banner-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-content img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5), #000000);
}

.banner-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
}

.banner-info h3 {
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 700;
    margin: 0;
}

.banner-info button {
    margin-top: 10px;
    padding: 10px 20px;
    background: rgba(128,128,128,0.6);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.banner-indicators {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.banner-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background: rgba(206,5,45,0.5);
    border-radius: 50%;
}

.banner-indicator.active {
    width: 12px;
    background: #CE052D;
}

.discover {
    padding: 10px 20px;
}

.discover h2 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
}

.categories {
    padding: 0 19px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.category-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.category-name {
    position: absolute;
    bottom: 8px;
    left: 8px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
}

.tags-section {
    padding: 20px;
}

.tag-container {
    margin-bottom: 20px;
}

.tag-container h3 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.tag-items {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    scrollbar-width: thin;
}

.tag-item {
    flex-shrink: 0;
    width: 120px;
    cursor: pointer;
}

.tag-item.special {
    width: 180px;
}

.tag-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 5px;
}

.tag-item.special img {
    height: 100px;
}

.tag-title {
    color: #CE052D;
    font-weight: bold;
    margin-top: 5px;
}

.tag-genre {
    color: #666666;
    font-size: 14px;
}

/* Movie Detail */
.movie-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.poster-section {
    position: relative;
    height: 50vh;
    background: #484848;
}

#movie-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

#movie-thumbnail {
    width: 150px;
    height: 225px;
    object-fit: cover;
    border-radius: 8px;
}

.movie-meta {
    color: #FFFFFF;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #ECD4FF;
}

.icon {
    font-size: 15px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

#play-button, #download-button {
    background: #CE052D;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

#download-button {
    background: rgba(128, 128, 128, 0.6);
}

.overview-section {
    padding: 20px;
    color: #FFFFFF;
}

.overview-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

#movie-description {
    color: #CDCDCD;
    font-size: 14px;
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.3s;
}

#movie-description.expanded {
    max-height: none;
}

#toggle-description {
    color: #CE052D;
    cursor: pointer;
    text-align: right;
    font-size: 14px;
}

/* Series Detail */
.series-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#series-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.series-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#series-thumbnail {
    width: 150px;
    height: 225px;
    object-fit: cover;
    border-radius: 8px;
}

.series-meta {
    color: #FFFFFF;
}

.seasons-section {
    padding: 20px;
    color: #FFFFFF;
}

.seasons-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

#series-description {
    color: #CDCDCD;
    font-size: 14px;
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.3s;
}

#series-description.expanded {
    max-height: none;
}

.season-container {
    background: #252323;
    border-radius: 10px;
    margin-bottom: 10px;
}

.season-title {
    padding: 10px;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.season-content {
    display: none;
    padding: 10px;
}

.season-content.active {
    display: block;
}

.episode-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #FFFFFF;
}

.episode-info {
    flex: 1;
}

.episode-info h4 {
    margin: 0;
    font-size: 14px;
}

.episode-info p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #ECD4FF;
}

.episode-actions {
    display: flex;
    gap: 10px;
}

.episode-actions span {
    cursor: pointer;
    font-size: 20px;
}

/* Movie Request */
.movie-request-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    color: #FFFFFF;
}

.movie-request-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    max-width: 100%;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    background: #000000;
    color: #FFFFFF;
    font-size: 14px;
    max-width: 80%;
}

.form-group input::placeholder {
    color: #9B9B9B;
}

#submit-button {
    background: #CE052D;
    color: #FFFFFF;
    border: none;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-size: 20px;
    cursor: pointer;
}

/* Account */
.account-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #FFFFFF;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.avatar {
    width: 100px;
    height: 100px;
    background: #272626;
    border-radius: 50%;
}

.profile-info h2 {
    margin: 0;
    font-size: 18px;
}

.profile-info p {
    margin: 5px 0 0;
    color: #CE052D;
    font-size: 15px;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #CE052D;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 16px;
}

.tab.active {
    border-bottom: 2px solid #CE052D;
    color: #CE052D;
}

.tab-content {
    padding: 10px;
}

#clear-continue-watching {
    background: #CE052D;
    color: #FFFFFF;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.card {
    position: relative;
    background: #272626;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-overlay span {
    font-size: 40px;
    color: #CE052D;
}

.card-content {
    padding: 10px;
    color: #FFFFFF;
}

.delete-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
}

/* See All */
.see-all-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #FFFFFF;
}

.see-all-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Category Detail */
.category-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #FFFFFF;
}

.header h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.movie-card {
    background: #272626;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.movie-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.movie-card .card-content h3 {
    margin: 10px;
    font-size: 16px;
    font-weight: bold;
}

.movie-card .card-content p {
    margin: 0 10px 10px;
    font-size: 12px;
    color: #ECD4FF;
}

/* Index Page */
.index-container {
    background: #000000;
    text-align: center;
    padding: 40px 20px;
}

.hero {
    padding: 60px 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), #000000);
}

.hero-logo {
    height: 100px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 36px;
    margin: 0 0 20px;
    color: #FFFFFF;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    color: #ECD4FF;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-buttons {
    margin: 30px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #CE052D;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #a50424;
}

.btn-primary:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

.btn-secondary {
    background: #808080;
    color: #FFFFFF;
    margin-left: 10px;
}

.btn-secondary:hover {
    background: #666666;
}

.btn-secondary:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

.features {
    padding: 40px 20px;
}

.features h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;.form-box
    margin: 0 auto;
}

.feature-card {
    background: #1C1C1C;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 40px;
    color: #CE052D;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin: 0 0 10px;
    color: #FFFFFF;
}

.feature-card p {
    font-size: 16px;
    color: #CDCDCD;
    margin: 0;
}

/* Static Pages */
.static-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    color: #FFFFFF;
    background: #000000;
}

.static-container h1 {
    font-size: 28px;
    color: #CE052D;
    margin-bottom: 20px;
}

.static-container h2 {
    font-size: 22px;
    color: #FFFFFF;
    margin: 20px 0 10px;
}

.static-container p {
    font-size: 16px;
    color: #CDCDCD;
    line-height: 1.6;
}

.static-container ul {
    list-style: disc;
    margin: 10px 0 20px 20px;
    color: #CDCDCD;
}

.static-container ul li {
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: #ECD4FF;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #FFFFFF;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    background: #1C1C1C;
    color: #FFFFFF;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #CE052D;
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9B9B9B;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

/* Footer */
.footer {
    background: #1C1C1C;
    padding: 20px;
    text-align: center;
    color: #FFFFFF;
    font-size: 14px;
    position: relative;
    width: 100%;
}

.footer-links a {
    color: #CE052D;
    text-decoration: none;
    margin: 0 10px;
    transition: text-decoration 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-app-links {
    margin: 10px 0;
}

.footer-app-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}

.footer-app-links a i {
    margin-right: 5px;
}

.footer p {
    margin: 10px 0 0;
    color: #CDCDCD;
}

/* Responsive Design */
@media (max-width: 767px) {
    .nav-bar {
        justify-content: space-between;
    }
    .nav-logo img {
        height: 40px;
    }
    .nav-links, .sidebar {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .bottom-nav {
        display: flex;
    }
    .main-content {
        margin: 0;
        max-width: 100%;
    }
    .form-box {
        width: 100%;
        max-width:100%;
        margin: 20px auto;
        padding: 15px;
    }
    .back-button {
        top: 10px;
        left: 10px;
        width: 30px;
        height: 30px;
    }
    .back-button span {
        font-size: 16px;
    }
    .banner-slider {
        height: 70vh;
    }
    .banner-info h3 {
        font-size: 20px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-card img {
        height: 60px;
    }
    .category-name {
        font-size: 10px;
    }
    .tag-item {
        width: 100px;
    }
    .tag-item.special {
        width: 150px;
    }
    .tag-item img {
        height: 140px;
    }
    .tag-item.special img {
        height: 80px;
    }
    .poster-section {
        height: 40vh;
    }
    .thumbnail-container {
        flex-direction: column;
        align-items: flex-start;
    }
    #movie-thumbnail, #series-thumbnail {
        width: 100px;
        height: 150px;
    }
    .movie-meta h2, .series-meta h2 {
        font-size: 20px;
    }
    .action-buttons {
        flex-direction: column;
    }
    .movie-request-container {
        padding: 10px;
    }
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .avatar {
        width: 60px;
        height: 60px;
    }
    .profile-info h2 {
        font-size: 16px;
    }
    .movie-card img {
        height: 150px;
    }
    .hero {
        padding: 40px 10px;
    }
    .hero-logo {
        height: 80px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
    .btn-secondary {
        margin-left: 0;
    }
    .features h2 {
        font-size: 24px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .static-container {
        padding: 10px;
        margin: 20px 10px;
    }
    .static-container h1 {
        font-size: 24px;
    }
    .static-container h2 {
        font-size: 20px;
    }
    .static-container p {
        font-size: 14px;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 12px;
    }
    .footer-links a {
        display: block;
        margin: 5px 0;
    }
    .footer-app-links a {
        display: block;
        margin: 10px 0;
    }
    .footer {
        padding: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    html, body {
        max-width: 100%;
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
        background: #000000;
        color: #FFFFFF;
        overflow-x: hidden;
    }
    
    .nav-bar {
        justify-content: flex-start;
    }
    .nav-links, .bottom-nav, .nav-toggle, .nav-dropdown {
        display: none;
    }
    .sidebar {
        display: block;
    }
    .main-content {
        margin-left: 200px;
        padding: 0px;
        max-width: calc(100% - 200px);
    }
    .form-box {
        height:100%;
        max-width: calc(100% - 40px);
        margin: 40px auto;
    }
    .container {
        padding-bottom: 0;
    }
    .hero {
        padding: 50px 20px;
    }
    .hero-logo {
        height: 90px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 17px;
    }
    .features h2 {
        font-size: 26px;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .static-container {
        padding: 15px;
    }
    .footer-links a {
        margin: 0 8px;
    }
}

@media (min-width: 1025px) {
    .nav-bar {
        justify-content: space-between;
    }
    .nav-links {
        display: flex;
    }
    .nav-toggle, .nav-dropdown, .bottom-nav, .sidebar {
        display: none;
    }
    .main-content {
        margin: 0;
        max-width: 100%;
    }
    .form-box {
        max-width: 100%;
        margin: 40px auto;
    }
    .hero {
        padding: 80px 40px;
    }
    .hero-logo {
        height: 100px;
    }
    .hero h1 {
        font-size: 40px;
    }
    .hero p {
        font-size: 18px;
    }
    .features h2 {
        font-size: 28px;
    }
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .static-container {
        padding: 20px;
    }
}