        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5fff5;
            color: #333;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: #2e8b57;
        }

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

/* Header Styles */
header {
    background-color: #228B22;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.logo span {
    color: #fff;
}

.ad-banner {
    background-color: #f0fff0;
    border: 1px dashed #228B22;
    width: 728px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

/* Navigation */
nav {
    width: 100%;
    background-color: #1a6e1a;
    margin-top: 15px;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: white;
    padding: 15px 20px;
    display: block;
    transition: background-color 0.3s;
}

.nav-menu li a:hover {
    background-color: #145814;
}

/* Main Content */
.main-content {
    flex: 70%;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

.sidebar {
    flex: 30%;
    padding: 20px;
    margin: 20px 0;
}

/* Intro Section */
.intro {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #e6ffe6;
    border-left: 4px solid #228B22;
    border-radius: 0 5px 5px 0;
}

.intro h1 {
    color: #1a6e1a;
    margin-bottom: 10px;
    font-size: 24px;
}

/* Downloader Box */
.downloader-box {
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
}

.downloader-box h2 {
    color: #1a6e1a;
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
}

.url-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 16px;
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.platform {
    background-color: #e6ffe6;
    border: 1px solid #a5d4a5;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    color: #1a6e1a;
    cursor: pointer;
    transition: all 0.3s;
}

.platform:hover {
    background-color: #1a6e1a;
    color: white;
}

.options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.option-group {
    flex: 1;
    min-width: 200px;
}

.option-group h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
}

.time-range {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.time-range input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.download-btn {
    background-color: #228B22;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    width: 100%;
    font-weight: bold;
}

.download-btn:hover {
    background-color: #1a6e1a;
}

/* Sidebar Styles */
.sidebar-ad {
    background-color: #f0fff0;
    border: 1px dashed #228B22;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    margin-bottom: 20px;
    border-radius: 5px;
}

.sidebar-links {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-links h3 {
    color: #1a6e1a;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
}

.sidebar-links ul {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.sidebar-links li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-links a {
    color: #555;
    transition: color 0.3s;
    display: block;
}

.sidebar-links a:hover {
    color: #1a6e1a;
}

/* Footer Styles */
footer {
    background-color: #1a3e1a;
    color: #e0ffe0;
    padding: 40px 0 20px;
    width: 100%;
    clear: both;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #e0ffe0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #7cfc00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #2a5a2a;
    width: 100%;
    color: #e0ffe0;
}

/* Fake download elements */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#download-options {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: #f0fff0;
    border-radius: 5px;
    border: 1px dashed #228B22;
}

.fake-formats {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.fake-format-btn {
    background: #228B22;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.fake-format-btn:hover {
    background: #1a6e1a;
}

/* Bottom Ads */
.bottom-ads {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.ad-block {
    background-color: #f0fff0;
    border: 1px dashed #228B22;
    width: 728px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-content, .sidebar {
        flex: 100%;
    }
    
    .header-content {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .ad-banner {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
    }
    
    .platforms {
        justify-content: center;
    }
    
    .options {
        flex-direction: column;
    }
    
    .footer-section {
        flex: 100%;
        text-align: center;
    }
    
    .sidebar-ad {
        height: 180px;
    }
}

/* New Elements */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tool-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    color: #333;
}

.tool-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.tool-icon {
    font-size: 40px;
    color: #228B22;
    margin-bottom: 15px;
}

.feature-grid, .sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature-card, .site-card {
    background: #f0faf0;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #d1e8d1;
}

.feature-card i {
    font-size: 30px;
    color: #228B22;
    margin-bottom: 10px;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #228B22;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.quote {
    font-style: italic;
    margin-bottom: 10px;
}

.author {
    font-weight: bold;
    color: #228B22;
}

/* Font Awesome Icons */
.fas, .fab {
    margin-right: 8px;
}

.testimonial-widget {
  background: transparent;
  padding: 10px;
  border-left: 3px solid #ccc;
  border-right: 3px solid #ccc;
}

.testimonial-item {
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.testimonial-author {
  text-align: right;
  font-weight: bold;
  font-size: 13px;
  color: #555;
}

/* ----------------------------------------
   Sidebar Links with Inline Colored Icons
   Platforms: YouTube, Facebook, Instagram, TikTok, MP3, GIF, Twitter, Vimeo, Reddit, LinkedIn
   Usage: Used in sidebar for better visual appeal
------------------------------------------- */
.sidebar-links ul {
  list-style: none;
  padding-left: 0;
}

.sidebar-links li {
  margin-bottom: 10px;
}

.sidebar-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.sidebar-links a .icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex-shrink: 0;
}

.icon.youtube { fill: #FF0000; }
.icon.facebook { fill: #1877F2; }
.icon.instagram { fill: #E1306C; }
.icon.tiktok { fill: #010101; }
.icon.mp3 { fill: #333; }
.icon.gif { fill: #888; }
.icon.twitter { fill: #1DA1F2; }
.icon.vimeo { fill: #1AB7EA; }
.icon.reddit { fill: #FF4500; }
.icon.linkedin { fill: #0077B5; }

.downloads-counter {
  padding: 10px;
  background-color: #f5f5f5;
  border-left: 3px solid #228B22;
  font-size: 16px;
  margin-top: 15px;
  border-radius: 6px;
  font-weight: bold;
}
