/* SEO Download Section Styles - Light Color Scheme */

.seo-download-section {
    margin: 40px 0;
    padding: 0;
}

.download-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 188, 212, 0.15);
}

.download-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 247, 250, 0.4) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.download-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.download-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00bcd4 0%, #9c27b0 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.download-icon svg {
    width: 35px;
    height: 35px;
    color: #fff;
    stroke-width: 2.5;
}

.download-info {
    flex: 1;
}

.download-title {
    margin: 0 0 12px 0;
    font-size: 26px;
    font-weight: 700;
    color: #00bcd4;
    line-height: 1.3;
}

.download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #7e57c2;
    font-weight: 500;
}

.meta-item svg {
    width: 16px;
    height: 16px;
    color: #00bcd4;
    stroke-width: 2.5;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(224, 247, 250, 0.6) 0%, rgba(243, 229, 245, 0.6) 100%);
    color: #424242;
    padding: 20px 25px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 188, 212, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00bcd4 0%, #9c27b0 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.download-btn:hover::before {
    opacity: 1;
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 188, 212, 0.3);
    border-color: transparent;
    color: #ffffff;
}

.download-btn:hover .btn-icon svg,
.download-btn:hover .btn-arrow {
    color: #ffffff;
}

.download-btn:hover .btn-subtext {
    color: rgba(255, 255, 255, 0.9);
}

.download-btn:active {
    transform: translateY(-2px);
}

.btn-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00bcd4 0%, #9c27b0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.25);
}

.download-btn:hover .btn-icon {
    background: #ffffff;
}

.download-btn:hover .btn-icon svg {
    color: #00bcd4;
}

.btn-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
    stroke-width: 2.5;
    transition: color 0.3s ease;
}

.btn-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.btn-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #424242;
    transition: color 0.3s ease;
}

.download-btn:hover .btn-text {
    color: #ffffff;
}

.btn-subtext {
    font-size: 13px;
    font-weight: 500;
    color: #9c27b0;
    transition: color 0.3s ease;
}

.btn-arrow {
    font-size: 24px;
    font-weight: 600;
    color: #00bcd4;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.download-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Specific button styles */
.torrent-btn {
    background: linear-gradient(135deg, rgba(243, 229, 245, 0.7) 0%, rgba(224, 247, 250, 0.5) 100%);
    border-color: rgba(156, 39, 176, 0.2);
}

.direct-btn {
    background: linear-gradient(135deg, rgba(224, 247, 250, 0.7) 0%, rgba(243, 229, 245, 0.5) 100%);
    border-color: rgba(0, 188, 212, 0.2);
}

.download-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(224, 247, 250, 0.5) 0%, rgba(243, 229, 245, 0.5) 100%);
    border-radius: 12px;
    font-size: 14px;
    color: #7e57c2;
    font-weight: 500;
    border: 1px solid rgba(0, 188, 212, 0.2);
    position: relative;
    z-index: 1;
}

.download-note svg {
    width: 18px;
    height: 18px;
    color: #00bcd4;
    stroke-width: 2.5;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-container {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .download-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .download-icon {
        width: 60px;
        height: 60px;
    }
    
    .download-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .download-title {
        font-size: 22px;
    }
    
    .download-meta {
        justify-content: center;
    }
    
    .download-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .download-container {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .download-title {
        font-size: 20px;
    }
    
    .download-btn {
        padding: 18px 20px;
    }
    
    .btn-icon {
        width: 45px;
        height: 45px;
    }
    
    .btn-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .btn-text {
        font-size: 15px;
    }
    
    .btn-subtext {
        font-size: 12px;
    }
    
    .download-note {
        font-size: 13px;
        padding: 15px;
    }
}

/* Animation for page load */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seo-download-section {
    animation: slideIn 0.5s ease-out;
}

/* Print styles */
@media print {
    .download-container::before {
        display: none;
    }
    
    .download-btn {
        border: 2px solid #00bcd4;
    }
}