/* Font declarations */
@font-face {
    font-family: 'NavbarFont';
    src: url('../fonts/navbar.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Font Awesome Icon Fixes */
.fas, .fa, .fab, .far {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'Font Awesome 6 Brands' !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Specific icon fixes */
.fa-search::before { content: "\f002" !important; }
.fa-times::before { content: "\f00d" !important; }
.fa-random::before { content: "\f074" !important; }
.fa-stop::before { content: "\f04d" !important; }
.fa-volume-down::before { content: "\f027" !important; }
.fa-volume-up::before { content: "\f028" !important; }
.fa-volume-mute::before { content: "\f6a9" !important; }
.fa-chevron-left::before { content: "\f053" !important; }
.fa-chevron-right::before { content: "\f054" !important; }
.fa-play::before { content: "\f04b" !important; }

/* Ensure icons are visible in all language states */
[data-translate-title] .fas,
[data-translate-title] .fa,
[data-translate-title] .fab,
[data-translate-title] .far {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'Font Awesome 6 Brands' !important;
}

/* Kurdish language specific icon fixes */
body[lang="ku"] .fas,
body[lang="ku"] .fa,
body[lang="ku"] .fa,
body[lang="ku"] .far {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'Font Awesome 6 Brands' !important;
    font-weight: 900 !important;
}

/* Force icon visibility in all states */
.fas::before,
.fa::before,
.fab::before,
.far::before {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
}

/* Quran Page Styles */
body.quran-page {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: 'NavbarFont', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    min-height: 100vh;
}

/* Main content area */
.quran-content {
    padding-top: 40px; /* Reduced padding since no navbar */
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Header section */
.quran-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    animation: headerSlideDown 1s ease-out;
}

.quran-header h1 {
    font-size: 3rem;
    color: #6F43FE;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: bold;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.quran-header p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

/* Quran Tools Section */
.quran-tools {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 80px;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 20px;
    padding-top: 20px;
}

.tool-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 300px;
    animation: cardPop 0.8s ease-out both, cardFloat 4s ease-in-out infinite;
    transform-origin: center bottom;
}

.tool-card:nth-child(1) { animation-delay: 0.1s, 0.1s; }
.tool-card:nth-child(2) { animation-delay: 0.2s, 0.2s; }
.tool-card:nth-child(3) { animation-delay: 0.3s, 0.3s; }
.tool-card:nth-child(4) { animation-delay: 0.4s, 0.4s; }

.tool-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.tool-card:hover .video-container iframe {
    transform: scale(1.1);
}

/* Control Panel Styles */
.control-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 25px 30px;
    margin-top: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    animation: controlPanelSlide 1s ease-out 0.8s both;
}

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

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.control-btn i {
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
}

.control-btn:hover i {
    transform: scale(1.2);
}

.random-btn:hover {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-color: #4CAF50;
}

.stop-btn:hover {
    background: linear-gradient(135deg, #f44336, #da190b);
    border-color: #f44336;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.volume-icon {
    color: white;
    font-size: 18px;
    opacity: 0.8;
}

.volume-slider {
    width: 120px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    background: #6F43FE;
    transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.volume-slider::-moz-range-thumb:hover {
    background: #6F43FE;
    transform: scale(1.2);
}

/* Interpretation Section Styles */
.interpretation-section {
    margin-top: 60px;
    animation: interpretationSlide 1s ease-out 1.2s both;
}

.interpretation-header {
    text-align: center;
    margin-bottom: 50px;
}

.interpretation-header h2 {
    font-size: 2.5rem;
    color: #6F43FE;
    margin-bottom: 15px;
    font-weight: bold;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.interpretation-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.interpretation-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.interpretation-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.interpretation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.interpretation-card:hover::before {
    left: 100%;
}

.interpretation-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.interpretation-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.card-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.interpretation-card:hover .card-icon i {
    transform: scale(1.2);
}

.interpretation-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
}

.interpretation-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.interpretation-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.interpretation-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    color: white;
}

@keyframes interpretationSlide {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Keyframes */
@keyframes cardPop {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px) rotateX(90deg);
    }
    50% {
        transform: scale(1.1) translateY(-10px) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0deg);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-0.5deg);
    }
}

@keyframes headerSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px rgba(111, 67, 254, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(111, 67, 254, 0.6), 0 0 30px rgba(111, 67, 254, 0.4);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes controlPanelSlide {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Video Gallery Section Styles */
.video-gallery-section {
    margin-top: 80px;
    animation: gallerySlide 1s ease-out 1.5s both;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: #6F43FE;
    margin-bottom: 15px;
    font-weight: bold;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Updated Video Card Styles */
.gallery-video-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-video-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gallery-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-video-card:hover .gallery-video-container img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-video-card:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    color: white;
    font-size: 2.5rem;
    background: rgba(111, 67, 254, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-video-card:hover .video-overlay i {
    background: #6F43FE;
    transform: scale(1.1);
}

/* Pagination Styles */
.pagination {
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pagination-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination-btn i {
    font-size: 0.9rem;
}

.page-info {
    background: rgba(111, 67, 254, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    color: #6F43FE;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid rgba(111, 67, 254, 0.2);
}

@keyframes gallerySlide {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .quran-content {
        padding-top: 50px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .quran-header h1 {
        font-size: 2.5rem;
       
    }
    
    .quran-header p {
        font-size: 1.1rem;
    }
    
    .quran-tools {
        gap: 15px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .tool-card {
        min-width: 280px;
        flex: 0 0 auto;
    }
    
    .video-container {
        height: 180px;
    }
    
    .control-panel {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .volume-control {
        width: 100%;
        justify-content: center;
    }
    
    .volume-slider {
        width: 150px;
    }
    
    .interpretation-header h2 {
        font-size: 2rem;
    }
    
    .interpretation-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .interpretation-card {
        padding: 25px;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-video-container {
        height: 150px;
    }
    
    .pagination {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 660px) {
    .quran-header h1 {
        font-size: 2rem;
    }
    
    .quran-header p {
        font-size: 1rem;
    }
    
    .quran-tools {
        gap: 12px;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tool-card {
        min-width: 150px;
        width: calc(50% - 6px);
        max-width: none;
        flex: 0 0 calc(50% - 6px);
    }
    
    .video-container {
        height: 120px;
    }
    
    .control-panel {
        padding: 15px;
    }
    
    .control-btn {
        width: 50px;
        height: 50px;
    }
    
    .control-btn i {
        font-size: 16px;
    }
    
    .volume-control {
        padding: 12px 15px;
    }
    
    .volume-slider {
        width: 100px;
    }
    
    .interpretation-header h2 {
        font-size: 1.8rem;
    }
    
    .interpretation-header p {
        font-size: 1rem;
    }
    
    .interpretation-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .interpretation-card h3 {
        font-size: 1.3rem;
    }
    
    .gallery-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-header p {
        font-size: 1rem;
    }
    
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-video-container {
        height: 150px;
    }
    
    .pagination-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .page-info {
        padding: 8px 15px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .quran-tools {
        gap: 8px;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tool-card {
        min-width: 130px;
        width: calc(50% - 4px);
        flex: 0 0 calc(50% - 4px);
    }
    
    .video-container {
        height: 100px;
    }
    
    .quran-header h1 {
        font-size: 1.8rem;
    }
    
    .quran-header p {
        font-size: 0.9rem;
    }
    
    .gallery-header h2 {
        font-size: 1.6rem;
    }
    
    .gallery-header p {
        font-size: 0.9rem;
    }
    
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-video-container {
        height: 120px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .page-info {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* Search Bar Styles */
.search-container {
    margin-bottom: 40px;
    animation: searchSlide 1s ease-out 1.8s both;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.search-icon {
    color: white;
    font-size: 18px;
    margin-left: 20px;
    margin-right: 15px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    padding: 15px 0;
    outline: none;
    font-family: inherit;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.clear-search-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.clear-search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transform: scale(1.1);
}

.search-info {
    text-align: center;
    margin-top: 15px;
}

.search-info span {
    background: rgba(111, 67, 254, 0.1);
    color: #6F43FE;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid rgba(111, 67, 254, 0.2);
}

@keyframes searchSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Quran Collection Section (Kurdish Only) */
.additional-quran-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(111, 67, 254, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.kurdish-only-title,
[data-translate="quran.additionalSectionTitle"] {
    font-size: 2.5rem;
    color: #6F43FE;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(111, 67, 254, 0.2);
    font-family: 'K24', Arial, sans-serif;
}

.section-description,
[data-translate="quran.additionalSectionDescription"] {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-family: 'K24', Arial, sans-serif;
}

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

.download-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.download-info {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    text-align: center;
}

.download-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6F43FE, #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(111, 67, 254, 0.3);
}

.download-icon i {
    font-size: 2rem;
    color: white;
}

.download-text h3,
[data-translate="quran.downloadTitle"] {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'K24', Arial, sans-serif;
}

.download-text p,
[data-translate="quran.downloadDescription"] {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: 'K24', Arial, sans-serif;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.features-list li,
.features-list li span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #555;
    font-family: 'K24', Arial, sans-serif;
}

.features-list li i {
    color: #28a745;
    font-size: 1.1rem;
}

.download-action {
    text-align: center;
}

.download-btn,
.download-btn span {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #6F43FE, #8B5CF6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(111, 67, 254, 0.3);
    font-family: 'K24', Arial, sans-serif;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(111, 67, 254, 0.4);
    background: linear-gradient(135deg, #5B35D4, #7C3AED);
}

.download-btn i {
    font-size: 1.5rem;
}

.download-note,
[data-translate="quran.downloadNote"] {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
    font-family: 'K24', Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .additional-quran-section {
        margin-top: 60px;
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .kurdish-only-title {
        font-size: 2rem;
    }
    
    .download-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .download-icon {
        width: 60px;
        height: 60px;
    }
    
    .download-icon i {
        font-size: 1.5rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .download-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .kurdish-only-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .download-text h3 {
        font-size: 1.5rem;
    }
    
    .download-text p {
        font-size: 1rem;
    }
}


