/*
Theme Name: VIP Porn
Theme URI: https://www.ekogirl.com/
Author: Sen
Description: VIP  video paylaşım teması.
Version: 1.0
Tags: video, dark, responsive, grid
*/

/* style.css */
body {
    margin: 0;
    background: #121212;
    color: #f1f1f1;
    font-family: Arial, sans-serif;
}
a { color: #e91e63; text-decoration: none; }
a:hover { color: #ff4081; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background: #1e1e1e;
    padding: 15px 0;
}
header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #e91e63;
    text-align: center;
}

/* Menu */
nav.menu {
    background: #1e1e1e;
    text-align: center;
    padding: 10px 0;
}
nav.menu ul { list-style: none; margin: 0; padding: 0; }
nav.menu li { display: inline-block; margin: 0 10px; }
nav.menu a { color: #f1f1f1; font-weight: bold; }

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.video-item {
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.video-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.video-item .info {
    padding: 10px;
}
.video-item .title {
    font-size: 16px;
    margin: 0 0 5px;
}
.video-item .meta {
    font-size: 12px;
    color: #bbb;
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 20px 0;
}

.pagination a {
    background: #e91e63;
    color: #fff;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 4px;
}

/* Footer */
footer {
    background: #1e1e1e;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
footer p {
    color: #bbb;
    margin: 0;
}
