/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000000;
    color: #ffffff;
}

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

header .logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

header h1 {
    font-size: 24px;
    color: #ff6f00;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.8);
    transition: font-size 0.8s ease;
}

nav {
    display: flex;
    gap: 20px;
}

nav li {
    list-style: none;
    cursor: pointer;
}

nav li {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav li:hover {
    color: #ff6f00;
}

header h1:hover {
    font-size: 25px;
}

/* Welcome Section */
.welcome {
    text-align: center;
    padding: 100px 20px;
    color: #fff;
}

.welcome h1 {
    font-size: 48px;
    color: #ff6f00;
    text-shadow: 0 0 30px rgba(255, 87, 34, 0.8);
    margin-bottom: 20px;
    font-family: 'Zen Dots', sans-serif;
}

.welcome p {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.5;
}

.welcome .download-home {
    background-color: #ff6f00;
    border-radius: 9px;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.8s ease, transform 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.welcome .download-home:hover {
    background-color: #5a5a5a;
    transform: translateY(-3px);
}

/* Error Page */
.error {
    text-align: center;
    padding: 100px 20px;
}

.error-h1 {
    font-family: 'Zen Dots', sans-serif;
    font-size: 120px;
    font-weight: bold;
    color: #ff6f00;
    animation: color-error-h1 5s infinite ease-in-out;
}

.error p {
    font-size: 18px;
    color: #525252;
}

.error .return-home {
    background-color: #ff6f00;
    border-radius: 9px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.8s ease;
}

.error .return-home:hover {
    background-color: #5a5a5a;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header .logo {
        margin-bottom: 20px;
    }

    nav {
        flex-direction: column;
    }

    nav a {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .error {
        padding: 50px 20px;
    }

    .error-h1 {
        font-size: 80px;
    }

    .welcome h1 {
        font-size: 36px;
    }

    .welcome p {
        font-size: 18px;
    }

    .welcome .download-home {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Keyframes Animation for Color Change */
@keyframes color-error-h1 {
    0% {
        color: #ff6f00;
    }
    50% {
        color: white;
    }
    100% {
        color: #ff6f00;
    }
}

/* Diagonal Gradient Background for the Welcome Section */
body.welcome-bg {
    background: linear-gradient(45deg, #ff6f00, #000000, #ff6f00);
    background-size: 200% 200%;
    animation: gradientAnimation 5s ease infinite;
}

/* Keyframes for gradient animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 80% 40%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Download Page Styles */
.download-section {
    padding: 60px 20px;
    background-color: #121212;
    text-align: center;
}

.download-section h1 {
    font-size: 42px;
    color: #ff6f00;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 87, 34, 0.8);
}

.download-section p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.5;
}

.download-button {
    background-color: #ff6f00;
    border-radius: 9px;
    color: #fff;
    border: none;
    padding: 18px 35px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.8s ease, transform 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.download-button:hover {
    background-color: #5a5a5a;
    transform: translateY(-3px);
}

.main-note .note {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}

/* Features Preview Section */
.features-preview {
    margin-top: 60px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
}

.features-preview h2 {
    font-size: 28px;
    color: #ff6f00;
    margin-bottom: 20px;
    font-family: 'Zen Dots', sans-serif;
    transition: font-size 0.7s ease;
}

.features-preview h2:hover {
    font-size: 30px;
}

.features-preview ul {
    list-style-type: none;
    padding: 0;
}

.features-preview li {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 10px;
    transition: font-size 0.7s ease;
}

.features-preview li:hover {
    font-size: 21px;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
    padding: 20px;
    background-color: #121212;
    border-radius: 10px;
}

.faq-section h2 {
    font-size: 28px;
    color: #ff6f00;
    margin-bottom: 20px;
    font-family: 'Zen Dots', sans-serif;
}

.faq-section p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #333;
    text-align: center;
    color: #fff;
    font-size: 14px;
    margin-top: 60px;
}

footer a {
    color: #ff6f00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Virus Scan Page Styles */
.virus-scan-section {
    padding: 60px 20px;
    background-color: #121212;
    text-align: center;
}

.virus-scan-section h1 {
    font-size: 36px;
    color: #ff6f00;
    margin-bottom: 30px;
    font-family: 'Zen Dots', sans-serif;
    text-shadow: 0 0 30px rgba(255, 87, 34, 0.8);
}

.upload-button {
    background-color: #ff6f00;
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 9px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
}

.upload-button:hover {
    background-color: #5a5a5a;
    transform: translateY(-3px);
}

.upload-container {
    margin-top: 20px;
}

input[type="file"] {
    display: none;
}

.file-label {
    display: inline-block;
    padding: 12px 25px;
    background-color: #333;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    border: none;
    transition: background-color 0.3s ease;
}

.file-label:hover {
    background-color: #ff6f00;
}

.action-buttons {
    margin-top: 40px;
}

.action-button {
    background-color: #ff6f00;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 9px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
}

.action-button:hover {
    background-color: #5a5a5a;
    transform: translateY(-3px);
}

.log-container {
    margin-top: 40px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
}

textarea {
    width: 100%;
    height: 180px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    font-family: Arial, sans-serif;
    border: 1px solid #666;
    border-radius: 8px;
    resize: none;
    font-size: 14px;
}

textarea:focus {
    outline: none;
    border-color: #ff6f00;
}

/* Responsive Adjustments for Virus Scan Page */
@media screen and (max-width: 768px) {
    .virus-scan-section h1 {
        font-size: 28px;
    }

    .upload-button,
    .action-button {
        padding: 10px 25px;
        font-size: 16px;
    }

    textarea {
        height: 150px;
    }

    .upload-container {
        margin-top: 10px;
    }
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000000;
    color: #ffffff;
}

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

header .logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

header h1 {
    font-size: 24px;
    color: #ff6f00;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.8);
    transition: font-size 0.8s ease;
}

nav {
    display: flex;
    gap: 20px;
}

nav li {
    list-style: none;
    cursor: pointer;
}

nav li {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav li:hover {
    color: #ff6f00;
}

header h1:hover {
    font-size: 25px;
}

/* Features Page Styles */
.features-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-page h1 {
    font-size: 40px;
    color: #ff6f00;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.8);
    text-align: center;
    margin-bottom: 40px;
}

.features-list h2 {
    font-size: 28px;
    color: #ff6f00;
    margin-bottom: 10px;
    font-family: 'Zen Dots', sans-serif;
}

.features-list ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 10px;
    transition: color 0.5s ease;
}

.features-list li strong {
    color: #ff6f00;
    transition: color 0.5s ease;
}

/* Feature Section Styling */
.features-list ul li {
    line-height: 1.8;
}

.features-list li:hover {
    color: #ff6f00;
}

.features-list li:hover strong {
    color: #fff;
}

.features-list {
    margin-bottom: 50px;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #333;
    text-align: center;
    color: #fff;
    font-size: 14px;
    margin-top: 60px;
}

footer a {
    color: #ff6f00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .features-page h1 {
        font-size: 32px;
    }

    .features-list h2 {
        font-size: 24px;
    }

    .features-list li {
        font-size: 16px;
    }

    footer {
        padding: 15px;
    }
}

/* Custom Scrollbar - Below Navigation */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000000;
    color: #ffffff;
    overflow-y: scroll; /* Ensures the scrollbar is visible */
}

/* Scrollbar container */
::-webkit-scrollbar {
    width: 12px; /* Scrollbar width */
}

/* Scrollbar track */
::-webkit-scrollbar-track {
    background: #333; /* Dark background for the track */
    border-radius: 8px;
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
    background: #ff6f00; /* Bright color for the scrollbar */
    border-radius: 8px;
    transition: background 0.8s ease; /* Smooth hover effect */
}

/* Scrollbar thumb hover */
::-webkit-scrollbar-thumb:hover {
    background: #e64a19; /* A slightly darker color when hovered */
}

/* Scrollbar corner */
::-webkit-scrollbar-corner {
    background: transparent;
}

/* Apply custom scrollbar styles under the navigation */
header + * {
    padding-top: 20px; /* Add a small space below the header */
}

/* Optional: Add some margin to body if you need it */
body {
    margin-top: 0;
}
