.hero {
    background: var(--gradient-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sohbetlerimiz-videolar {
    padding: 3rem 0 2.5rem 0;
    background: var(--bg-secondary);
}

.sohbetlerimiz-videolar .container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1.2rem;
}

.video-section-title {
    text-align: center;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.2rem;
    letter-spacing: 0.01em;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.video-item {
    background: var(--bg-primary);
    border-radius: 1.1rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    transition: box-shadow 0.2s;
    max-height: 300px;
}

.video-item:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}

.video-item iframe {
    width: 100%;
    height: 100%;
    max-height: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    background: #000;
    border-radius: 0.7rem;
}

@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-section-title {
        font-size: 1.3rem;
    }

    .video-item iframe {
        min-height: 220px;
    }
}

.pagination-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding: 0;
    clear: both;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.pagination a,
.pagination span {
    background: var(--bg-secondary, #2d2d2d);
    color: var(--text-primary, #fff);
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 44px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .current-page {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #181818;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.pagination a:hover {
    background: var(--accent-color, #FFD700);
    color: #181818;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pagination .arrow {
    font-size: 1.2rem;
    padding: 12px 14px;
    font-weight: bold;
}

.pagination .disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--bg-secondary, #2d2d2d);
}

.sohbet-section {
    background: var(--bg-primary);
}

.sohbet-ana-section {
    width: 100%;
    padding: 60px 0;
}

.sohbet-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-left {
    padding-right: 20px;
    padding-top: 20px;
    align-self: start;
}

.content-left h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
}

.content-left h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50%;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.content-left p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
}

.gallery-item {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .sohbet-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .content-left {
        padding-right: 0;
        text-align: center;
    }

    .content-left h2 {
        font-size: 2rem;
    }

    .content-left h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .gallery {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .pagination-wrapper {
        margin-top: 2rem;
    }

    .pagination {
        gap: 8px;
    }

    .pagination a,
    .pagination span {
        padding: 10px 12px;
        font-size: 0.9rem;
        min-width: 40px;
    }

    .pagination .arrow {
        font-size: 1.1rem;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .pagination-wrapper {
        margin-top: 1.5rem;
    }

    .pagination a,
    .pagination span {
        padding: 8px 10px;
        font-size: 0.85rem;
        min-width: 36px;
    }

    .pagination .arrow {
        font-size: 1rem;
        padding: 8px 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .pagination a {
        padding: 9px 12px;
        font-size: 0.95rem;
    }
}