body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #313131;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    color: white;
    padding: 10px;
}

.logo img {
    width: 100px; /* Adjust width as needed */
    height: auto; /* Keeps aspect ratio */
    max-width: 100%; /* Ensures it doesn't exceed parent div */
}



.search-bar {
    width: 40%;
    padding: 5px;
}

.search-btn {
    padding: 5px 10px;
    background: white;
    border: none;
    cursor: pointer;
}

/* .static-page p {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.47);
} */
/* Content */
.content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.static-page__title {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.static-page__content p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.47);
}

.static-page__content a {
    color: #7793c0;
    text-decoration: none;
    font-weight: bold;
}

.static-page__content a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #1a1a1a;
    margin-top: auto;
}

footer div {
    color: white;
    text-decoration: none;
}

footer a {
    color: #7793c0;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #ffffff; /* Highlight effect */
    text-decoration: underline;
    font-size: 1.1em; /* Slightly bigger */
}

/* DMCA ko bold karna */
footer a[href="/dmca/"] {
    font-weight: bold;
}

footer p {
    color: white;
    text-decoration: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .logo img {
        max-width: 100px;
    }

    .search-bar {
        width: 90%;
        margin-bottom: 10px;
    }

    .search-btn {
        width: 90%;
    }

    .content {
        width: 90%;
        padding: 15px;
    }

    footer {
        font-size: 12px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .search-bar, .search-btn {
        width: 100%;
    }

    .static-page__title {
        font-size: 18px;
    }

    .static-page__content p {
        font-size: 14px;
    }

    footer {
        font-size: 12px;
    }
}