/* ==== T.TECH DOWNLOADER STYLES ==== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.fa, .fas, .far, .fab, i[class^="fa-"] {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    width: 28px;
    height: 28px;
}

.desktop-nav {
    display: block;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.desktop-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.desktop-nav ul li a:hover {
    color: #ffd700;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.install-btn {
    background: #2ecc71;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.install-btn:hover {
    background: #27ae60;
    transform: scale(1.05);
}

.hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.05) 0%, rgba(37, 117, 252, 0.05) 100%);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero h1 svg {
    width: 48px;
    height: 48px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #5a6c7d;
}

.download-section {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.url-input-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.url-input {
    flex: 1;
    padding: 20px 24px;
    border: 2px solid #e1e5eb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    background: #fff;
}

.url-input:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.platform-select-wrapper {
    position: relative;
    min-width: 180px;
}

.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background: white;
    border: 2px solid #e1e5eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
}

.custom-select-trigger:hover {
    border-color: #6a11cb;
}

.custom-select-trigger span i {
    margin-right: 10px;
    width: 20px;
    color: #6a11cb;
}

.custom-select-trigger .fa-chevron-down {
    color: #6a11cb;
    transition: transform 0.3s;
}

.custom-select.open .custom-select-trigger .fa-chevron-down {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e1e5eb;
    border-radius: 12px;
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.custom-select.open .custom-select-options {
    max-height: 400px;
    overflow-y: auto;
}

.custom-option {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    cursor: pointer;
}

.custom-option i {
    width: 20px;
    font-size: 16px;
}

.custom-option:hover {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
}

.custom-option.selected {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
}

.custom-option.selected i {
    color: white !important;
}

.custom-option[data-value="tiktok"] i { color: #000000; }
.custom-option[data-value="instagram"] i { color: #E4405F; }
.custom-option[data-value="youtube"] i { color: #FF0000; }
.custom-option[data-value="facebook"] i { color: #1877F2; }
.custom-option[data-value="pinterest"] i { color: #E60023; }
.custom-option[data-value="snapchat"] i { color: #FFFC00; text-shadow: 0 0 2px #000; }

.download-btn {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(106, 17, 203, 0.3);
}

.download-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.quality-buttons-container {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn-normal,
.download-btn-hd,
.download-btn-audio {
    flex: 1;
    min-width: 180px;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-btn-normal {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
}

.download-btn-hd {
    background: linear-gradient(135deg, #e65c00 0%, #F9D423 100%);
    color: white;
}

.download-btn-audio {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.download-btn-normal:hover,
.download-btn-hd:hover,
.download-btn-audio:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

/* YouTube Download Guide */
.youtube-download-guide {
    margin-top: 15px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #FF0000;
    animation: fadeIn 0.3s ease;
}

.youtube-download-guide p {
    color: #5a6c7d;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.youtube-download-guide p i {
    color: #FF0000;
    font-size: 16px;
}

.youtube-download-guide p strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .youtube-download-guide {
        padding: 10px 14px;
    }
    .youtube-download-guide p {
        font-size: 13px;
    }
}

.features-highlight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e1e5eb;
}

.feature-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    cursor: default;
    user-select: none;
}

.feature-highlight i {
    color: #6a11cb;
    font-size: 18px;
}

.watermark-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

.video-preview-container {
    margin: 25px 0;
    animation: fadeIn 0.5s ease;
}

.video-preview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5eb;
}

.video-thumbnail {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    border-radius: 15px 15px 0 0;
}

.video-thumbnail i {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 48px;
    opacity: 0.9;
}

.media-count-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 3;
    display: none;
}

.video-info {
    padding: 20px;
}

.account-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.account-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    overflow: hidden;
}

.account-details {
    flex: 1;
}

.account-details h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.account-details p {
    margin: 0;
    color: #5a6c7d;
    font-size: 14px;
    line-height: 1.4;
}

.watermark-warning {
    margin-top: 10px;
    padding: 8px 12px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    font-size: 12px;
    color: #856404;
}

.watermark-warning i {
    margin-right: 6px;
}

.platforms {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 42px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.15);
}

.platform-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.platform-card:nth-child(1) .platform-icon i { color: #000000; }
.platform-card:nth-child(2) .platform-icon i { color: #E4405F; }
.platform-card:nth-child(3) .platform-icon i { color: #FF0000; }
.platform-card:nth-child(4) .platform-icon i { color: #1877F2; }
.platform-card:nth-child(5) .platform-icon i { color: #E60023; }
.platform-card:nth-child(6) .platform-icon i { color: #FFFC00; text-shadow: 0 0 2px #000; }

.platform-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.platform-card p {
    color: #5a6c7d;
    margin-bottom: 20px;
    font-size: 14px;
}

.platform-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge.video {
    background: #e3f2fd;
    color: #1976d2;
}

.badge.audio {
    background: #e8f5e9;
    color: #388e3c;
}

.badge.image {
    background: #fce4ec;
    color: #c2185b;
}

.badge.hd {
    background: #fff3e0;
    color: #f57c00;
}

.badge.warning {
    background: #fff3cd;
    color: #856404;
}

.how-it-works {
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 22px;
}

.step p {
    color: #5a6c7d;
}

.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.15);
}

.contact-card svg {
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 22px;
}

.contact-card a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    color: #6a11cb;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card p {
    color: #5a6c7d;
    font-size: 14px;
}

.suggest {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.suggest-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.suggest-container p {
    margin-bottom: 25px;
    color: #5a6c7d;
}

.suggest-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.suggest-form input,
.suggest-form textarea {
    padding: 15px;
    border: 2px solid #e1e5eb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    font-family: inherit;
}

.suggest-form input:focus,
.suggest-form textarea:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.suggest-submit {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggest-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.faq {
    padding: 80px 0;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    color: #2c3e50;
    font-size: 18px;
    margin: 0;
}

.faq-question i:last-child {
    color: #6a11cb;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
    opacity: 1;
}

.faq-item.open .faq-question i:last-child {
    transform: rotate(180deg);
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ecf0f1;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column ul li i {
    color: #6a11cb;
    width: 20px;
}

.developer-credit {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #34495e;
}

.legend {
    color: #ffd700;
    font-weight: bold;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 14px;
}

.disclaimer {
    font-size: 11px;
    margin-top: 10px;
    opacity: 0.7;
}

.message {
    position: fixed;
    top: 90px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.message.success { background: #27ae60; }
.message.error { background: #e74c3c; }
.message.info { background: #3498db; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-header .logo {
    font-size: 20px;
    color: white;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav-content ul {
    list-style: none;
}

.mobile-nav-content ul li {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .features-highlight {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 36px;
    }
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero {
        padding: 100px 0 40px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    .download-section {
        padding: 25px;
    }
    .input-group {
        flex-direction: column;
    }
    .platform-select-wrapper {
        width: 100%;
    }
    .custom-select-trigger {
        padding: 15px 20px;
    }
    .quality-buttons-container {
        flex-direction: column;
    }
    .download-btn-normal,
    .download-btn-hd,
    .download-btn-audio {
        width: 100%;
    }
    .features-highlight {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    .steps {
        gap: 20px;
    }
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-card {
        width: 100%;
        max-width: 300px;
    }
    .message {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Carousel Styles */
.carousel-container {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.carousel-wrapper::-webkit-scrollbar {
    height: 6px;
}

.carousel-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.carousel-wrapper::-webkit-scrollbar-thumb {
    background: #6a11cb;
    border-radius: 10px;
}

.carousel-item {
    flex: 0 0 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    border: 2px solid #e1e5eb;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.carousel-item:hover {
    transform: scale(1.02);
    border-color: #6a11cb;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.2);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item .carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.carousel-download-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(106, 17, 203, 0.9);
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-10px);
}

.carousel-item:hover .carousel-download-btn {
    opacity: 1;
    transform: translateY(0);
}

.carousel-download-btn:hover {
    background: #2575fc;
    transform: scale(1.1);
}

.download-all-btn {
    width: 100%;
    margin-top: 15px;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-all-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(106, 17, 203, 0.3);
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 140px;
        height: 140px;
    }
    .carousel-download-btn {
        opacity: 1;
        transform: translateY(0);
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}