body {
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.video-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 5%;
    gap: 3%;
}

.video-card {
    width: 30%;
    margin-bottom: 30px;
}

.video-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.video-title {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-title:hover {
    color: orange;
}
.pagination {
    text-align: center;
    margin: 30px 0;
}

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
}

.pagination a:hover {
    background: orange;
}

.pagination a.active {
    background: orange;
    color: #000;
}
.video-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    justify-content: center;
    padding: 40px 5%;
    background-color: #000;
}

.video-card {
    width: 30%;
    background-color: #111;
    border: 1px solid #444; /* hafif gri ton */
    border-radius: 10px; /* oval köşeler */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: scale(1.03); /* biraz öne çıksın */
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.2); /* turuncumsu gölge efekti */
}

.video-card img {
    width: 100%;
    height: auto;
    display: block;
}

.video-title {
    display: block;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.video-title:hover {
    color: orange;
}
