/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    text-align: center;
    color: #333;
}

/* Header */
header {
    background: #007bff;
    color: white;
    padding: 50px 20px;
    position: relative;
}

header h1 {
    font-size: 2.5em;
}

/* Extension Icon */
.extension-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

/* Download Icon */
.download-icon {
    width: 100px;
    height: 100px;
    margin: 20px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #e68900;
}

/* Features Section */
#features {
    padding: 50px 20px;
}

.feature-box {
    background: white;
    padding: 20px;
    margin: 10px auto;
    width: 80%;
    max-width: 500px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Screenshot Section */
#screenshots {
    padding: 50px 20px;
    background: #fff;
}

.screenshot-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.screenshot-container img {
    width: 300px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.screenshot-container img:hover {
    transform: scale(1.05);
}

/* Download Section */
#download {
    padding: 50px 20px;
    background: #f1f1f1;
}

/* Video Sections */
#install-video, #usage-video {
    padding: 50px 20px;
    background: #f1f1f1;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 10px 0;
}

/* Installation Steps Section */
#install {
    background: #f1f1f1;
    /* padding: 50px 20px; */
    text-align: center;
}

.install-steps {
    display: inline-block;
    text-align: left;
    overflow-x: auto;
    word-wrap: break-word;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.install-steps ol {
    list-style: none;
    padding: 0;
}

.install-steps li {
    font-size: 1rem;
    padding: 10px 0;
    display: flex;
    line-height: 1.6;
    word-break: break-word;
    align-items: flex-start;
    gap: 8px;
}

.install-steps li span {
    color: #007bff;
    flex-shrink: 0;
}

.left-side-ads {
    position: absolute; /* Moves with the page instead of staying fixed */
    left: 1vw; /* Keeps it near the left side */
    top: 50%; /* Adjust this based on where you want it to appear */
    transform: translateY(-50%); /* Keeps it vertically centered */
    width: 10vw; /* Adjust width dynamically */
    max-width: 150px; /* Prevents it from getting too large */
    background: rgba(255, 255, 255, 0.9);
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 10px 0 0 10px;
    z-index: 999; /* Keeps it above other elements */
}

.right-side-ads {
    position: absolute; /* Ensures it moves naturally with page scrolling */
    right: 1vw; /* Keeps it close to the right side */
    top: 50%; /* Centers it vertically */
    /* transform: translateY(-50%); Ensures perfect vertical centering */
    width: 10vw; /* Adjusts width dynamically */
    max-width: 150px; /* Prevents it from getting too large */
    background: rgba(255, 255, 255, 0.95); /* Slight transparency for better visibility */
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2); /* Ensures shadow appears on the correct side */
    padding: 10px;
    border-radius: 0 10px 10px 0; /* Rounds only the left corners */
    transition: right 0.5s ease-in-out;
    z-index: 1000; /* Keeps it above other elements */
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust max width as needed */
    margin: 0 auto; /* Center the video */
    aspect-ratio: 16 / 9; /* Maintains aspect ratio */
}

.video-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
