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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #0f766e, #059669);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-text {
    font-weight: bold;
    color: #0f766e;
    font-size: 1.2rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-menu li a:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.search-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: rgba(255,255,255,0.2);
}

.hero {
    text-align: center;
    margin: 4rem 0;
}

.hero h2 {
    font-size: 3rem;
    color: #0f766e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.daily-verse {
    background: linear-gradient(135deg, #0f766e, #059669);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(15, 118, 110, 0.3);
}

.daily-verse h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.daily-verse .arabic {
    font-size: 2rem;
    margin: 1.5rem 0;
    font-weight: 400;
    line-height: 1.8;
    font-family: 'Amiri', serif;
    direction: rtl;
}

.daily-verse .translation {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    font-style: italic;
    opacity: 0.9;
}

.daily-verse .reference {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 1rem;
}

input[type="text"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    margin-bottom: 2rem;
    transition: border-color 0.3s;
}

input[type="text"]:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer p {
    margin: 0;
    opacity: 0.8;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: calc(100vh - 200px);
}

.page {
    display: none;
}

.page.active {
    display: block;
}

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

.live-badge-large {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: bold;
    font-size: 0.875rem;
    animation: blink 1.5s ease-in-out infinite;
}

.close-live-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.close-live-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.live-info h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.live-watch-btn {
    background: white;
    color: #ef4444;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.live-watch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #0f766e;
    margin-bottom: 0.5rem;
}

.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.grid-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.grid-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    float: right;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

#searchResults .grid-item {
    background: #f8f9fa;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

#searchResults .grid-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

#searchResults .grid-item small {
    color: #6c757d;
    font-size: 0.75rem;
    text-transform: uppercase;
}

#searchResults .grid-item h4 {
    margin: 0.25rem 0 0 0;
    color: #0f766e;
}

.video-page-header {
    text-align: center;
    margin: 2rem 0 3rem 0;
}

.video-page-header h2 {
    font-size: 2.5rem;
    color: #0f766e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.video-page-header p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.video-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(135deg, #0f766e, #059669);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(15, 118, 110, 0.3);
}

.video-header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.video-header-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-header-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.video-header-info a {
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    display: inline-block;
}

.video-header-info a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.video-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.video-tab {
    padding: 12px 30px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.video-tab:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-tab.active {
    background: #0f766e;
    color: white;
    border-color: #0f766e;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.back-btn {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    background: #e5e7eb;
    transform: translateX(-5px);
}

.video-category {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.video-category:last-child {
    margin-bottom: 0;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #0f766e;
    font-size: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 1rem;
}

.category-title .icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #0f766e, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-count {
    margin-left: auto;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: normal;
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.category-desc {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.video-grid.full-grid {
    margin-top: 2rem;
}

.video-card {
    background: #f8f9fa;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: #0f766e;
}

.video-thumbnail {
    position: relative;
    background: #1f2937;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #1f2937;
    transition: opacity 0.3s ease;
}

.video-thumbnail img[src=""] {
    opacity: 0;
}

.video-thumbnail::after {
    content: '📺';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
    z-index: 0;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .video-thumbnail::before {
    opacity: 1;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card:hover .play-icon {
    opacity: 1;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.live-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.video-info {
    padding: 1rem;
    background: white;
}

.video-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.show-more-btn {
    background: none;
    border: 1px solid #0f766e;
    color: #0f766e;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.show-more-btn:hover {
    background: #0f766e;
    color: white;
}

.video-player-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #000;
    border-radius: 0.5rem;
}

.video-details h2 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-actions {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.action-btn {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.video-description {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.video-description p {
    margin: 0.5rem 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.video-description a {
    color: #0f766e;
    text-decoration: none;
    font-weight: 600;
}

.video-description a:hover {
    text-decoration: underline;
}

.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0f766e;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 3000;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

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

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

/* Ana Sayfa Video Bölümü - Yeni Tasarım */
.home-videos-section {
    margin: 2rem 0 4rem 0;
}

.home-videos-section.featured {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 2rem 0 4rem 0;
}

.video-header-home {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.channel-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.home-videos-section .video-header-info {
    flex: 1;
}

.home-videos-section .video-header-info h2 {
    font-size: 2.5rem;
    color: #0f766e;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.youtube-watch-btn {
    display: inline-block !important;
    color: #ffffff !important;
    text-decoration: none !important;
    background: #ff0000 !important;
    padding: 0.75rem 2rem !important;
    border-radius: 6px !important;
    border: none !important;
    transition: all 0.3s !important;
    font-weight: 700 !important;
    margin-top: 1rem !important;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3) !important;
    font-size: 1rem !important;
    text-shadow: none !important;
    letter-spacing: 0.02em !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.youtube-watch-btn:hover {
    background: #cc0000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.youtube-watch-btn:visited {
    color: #ffffff !important;
}

.youtube-watch-btn:active {
    color: #ffffff !important;
}

.home-videos-section .video-header-info p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* YouTube butonu kaldırıldı - sadece watch butonu kullanılıyor */

.video-categories-home {
    margin-bottom: 3rem;
}

.category-section {
    margin-bottom: 3rem;
}

.category-section .category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #0f766e;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.category-section .category-title .icon {
    font-size: 2rem;
}

.home-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.show-all-videos-btn {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f766e, #059669);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.show-all-videos-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
}

/* Mobil Menü */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu.active {
    display: flex;
}

/* Önceki/Sonraki Sure Butonları */
.sure-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    gap: 1rem;
}

.sure-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0f766e, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.sure-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.sure-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sure-nav-btn.prev:hover {
    transform: translateX(-5px) translateY(-2px);
}

.sure-nav-btn.next:hover {
    transform: translateX(5px) translateY(-2px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0f766e, #059669);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        z-index: 999;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .video-page-header h2 {
        font-size: 2rem;
    }
    
    .video-tabs {
        gap: 0.5rem;
    }
    
    .video-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .video-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .video-header img {
        width: 100px;
        height: 100px;
    }
    
    .video-header-info h3 {
        font-size: 1.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        flex-wrap: wrap;
    }
    
    .video-count {
        margin-left: 0;
        width: 100%;
    }
    
    .live-notification {
        margin: 0.5rem;
    }
    
    .live-content h3 {
        font-size: 1.1rem;
    }
    
    .live-watch-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .live-header {
        padding: 0.75rem 1rem;
    }
    
    .live-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .live-badge-large {
        font-size: 0.75rem;
    }
    
    .live-info h3 {
        font-size: 1rem;
    }
    
    .live-player {
        padding-bottom: 56.25%;
    }
    
    .search-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .home-videos-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-header h3 {
        font-size: 1.5rem;
    }
    
    .youtube-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .sure-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sure-nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .nav-container {
        position: relative;
    }
    
    .daily-verse {
        padding: 2rem 1.5rem;
    }
    
    .daily-verse .arabic {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .home-videos-section.featured {
        padding: 1.5rem;
    }
    
    .video-header-home {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .channel-avatar {
        width: 80px;
        height: 80px;
    }
    
    .home-videos-section .video-header-info h2 {
        font-size: 1.75rem;
    }
    
    .home-videos-section .video-header-info p {
        font-size: 1rem;
    }
    
    .youtube-channel-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .category-section .category-title {
        font-size: 1.2rem;
    }
    
    .show-all-videos-btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}