* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
}

/* Header Styles */
header {
    background-color: #E31B23;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.site-logo {
    width: 2.5rem;
    height: 2.5rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.site-title {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: white;
    border-radius: 1px;
}

/* Social Navigation */
.social-nav {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    transition: all 0.2s ease;
    border: none;
}

.social-link:hover {
    transform: scale(1.15);
    background-color: transparent;
}

.social-icon {
    width: 1.5rem;
    height: 1.5rem;
    filter: brightness(0) invert(1);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.video-container {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail img:first-child {
    max-height: 180px; /* Thumbnail yüksekliği */
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

/* Play butonu SVG kontrolü */
.play-button-svg {
    position: absolute;      /* Mutlak konumlandırma */
    top: 50%;               /* Dikey ortalama için üstten %50 */
    left: 50%;             /* Yatay ortalama için soldan %50 */
    transform: translate(-50%, -50%);  /* Tam merkeze almak için kaydırma */
    
    /* SVG boyut kontrolü - İstediğiniz gibi ayarlayabilirsiniz */
    width: 16px;           /* SVG genişliği - örn: 24px, 32px, 48px */
    height: 16px;          /* SVG yüksekliği - örn: 48px, 64px, 96px */
    
    /* Görsel efektler */
    cursor: pointer;       /* El işaretçisi göster */
    transition: transform 0.3s ease;  /* Hover animasyonu için geçiş efekti */
    
    /* İsteğe bağlı ek özellikler */
    /* opacity: 0.8; */    /* Saydamlık - 0.0 ile 1.0 arası */
    /* filter: drop-shadow(0 0 3px rgba(0,0,0,0.3)); */ /* Gölge efekti */
}

/* Play butonu hover (üzerine gelince) efekti */
.video-thumbnail:hover .play-button-svg {
    transform: translate(-50%, -50%) scale(1.1);  /* Büyütme efekti - örn: 1.1, 1.2, 1.3 */
    /* opacity: 1; */      /* Hover'da tam opaklık */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1rem;
}

.video-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* YouTube Abone Ol Butonu Stilleri */
.subscribe-button {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    border: none;
    padding: 8px 16px;
    margin-top: 8px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.subscribe-button:hover {
    background: linear-gradient(135deg, #CC0000, #990000);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.subscribe-button svg {
    flex-shrink: 0;
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    min-width: 20px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 2px 8px rgba(227, 27, 35, 0.3);
    }
    50% {
        box-shadow: 0 2px 15px rgba(227, 27, 35, 0.6);
    }
    100% {
        box-shadow: 0 2px 8px rgba(227, 27, 35, 0.3);
    }
}

/* Section Styles */
.slider-section {
    background-color: #f5f5f5;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.videos-section {
    padding: 2rem 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-section,
    .videos-section {
        padding: 1rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    header {
        padding: 0.5rem 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .logo-section {
        justify-content: center;
    }

    .site-logo {
        width: 2rem;
        height: 2rem;
    }

    .site-title {
        font-size: 1.1rem;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .nav-menu {
        gap: 1rem;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .social-nav {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .social-link {
        width: 2.2rem;
        height: 2.2rem;
    }
    
    .social-icon {
        width: 1.3rem;
        height: 1.3rem;
    }

    .videos-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .video-info {
        padding: 0.75rem;
    }
    
    .subscribe-button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Küçük mobil cihazlar için */
@media (max-width: 480px) {
    header {
        padding: 0.4rem 0.8rem;
    }

    .header-content {
        gap: 0.5rem;
    }

    .site-logo {
        width: 1.8rem;
        height: 1.8rem;
    }

    .site-title {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }

    .social-nav {
        gap: 0.4rem;
    }

    .social-link {
        width: 2rem;
        height: 2rem;
    }

    .social-icon {
        width: 1.1rem;
        height: 1.1rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .video-card {
        margin: 0 0.5rem;
    }
    
    .subscribe-button {
        padding: 5px 10px;
        font-size: 0.75rem;
        gap: 4px;
    }
    
    .subscribe-button svg {
        width: 14px;
        height: 14px;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 0;
    margin-top: 3rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 2rem;
    height: 2rem;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    background-color: #E31B23;
    transform: translateY(-2px);
    border-color: #E31B23;
}

.footer-social-icon {
    width: 1.2rem;
    height: 1.2rem;
    filter: brightness(0) invert(1);
}

/* Section Headers */
.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #E31B23;
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #E31B23;
    padding-left: 0.5rem;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -1rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: #E31B23;
}

.footer-link:hover::before {
    opacity: 1;
    left: -0.5rem;
}

/* Contact Section */
.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

/* Newsletter Section */
.footer-newsletter h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-newsletter p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #b0b0b0;
}

.newsletter-input:focus {
    outline: none;
    border-color: #E31B23;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background-color: #E31B23;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #c41820;
    transform: translateY(-1px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #E31B23;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 1.5rem 1rem 1rem;
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 1rem;
    }

    .footer-bottom p,
    .footer-bottom-link {
        font-size: 0.85rem;
    }
}



.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    margin: 1rem;
    border-radius: 4px;
    text-align: center;
}

/* reCAPTCHA badge'ini gizle */
.grecaptcha-badge {
    display: none !important;
}



/* Content Section Styles */
.content-section {
    padding: 3rem 0;
    background-color: #fff;
    min-height: 60vh;
}

/* Privacy Policy Styles */
.privacy-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.privacy-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #E31B23;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #E31B23;
    padding-bottom: 0.5rem;
}

.privacy-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 2rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 4px solid #E31B23;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: #555;
    text-align: justify;
}

.privacy-content ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.update-date {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border-left: 4px solid #E31B23;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.terms-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.coming-soon {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.coming-soon h2 {
    font-size: 1.8rem;
    color: #E31B23;
    margin-bottom: 1rem;
    font-weight: 600;
}

.coming-soon p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.back-home {
    display: inline-block;
    background-color: #E31B23;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-home:hover {
    background-color: #c41820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

/* Responsive Content */
@media (max-width: 768px) {
    .content-section {
        padding: 2rem 0;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .coming-soon {
        padding: 2rem 1rem;
    }

    .coming-soon h2 {
        font-size: 1.5rem;
    }

    .coming-soon p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }

    .coming-soon {
        padding: 1.5rem 1rem;
    }

    .coming-soon h2 {
        font-size: 1.3rem;
    }
}



/* Load More Button Styles */
.load-more-button {
    display: block;
    margin: 2rem auto;
    padding: 12px 32px;
    background: linear-gradient(135deg, #E31B23 0%, #ff4757 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.3);
}

.load-more-button:hover {
    background: linear-gradient(135deg, #c41e3a 0%, #e74c3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 27, 35, 0.4);
}

.load-more-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(227, 27, 35, 0.3);
}

.load-more-button:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.load-more-button:disabled:hover {
    background: #999;
    transform: none;
    box-shadow: none;
}