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

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background-color: #000000;
color: #ffffff;
line-height: 1.6;
}

a {
color: #ffa31a;
text-decoration: none;
transition: color 0.3s;
}

a:hover {
color: #ff9000;
}

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

.modal {
display: flex;
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.95);
align-items: center;
justify-content: center;
}

.modal.hidden {
display: none;
}

.modal-content {
background-color: #1a1a1a;
padding: 40px;
border-radius: 8px;
max-width: 500px;
text-align: center;
}

.age-verification h2 {
margin-bottom: 20px;
font-size: 28px;
color: #ffa31a;
}

.age-verification p {
margin-bottom: 15px;
font-size: 16px;
color: #cccccc;
}

.age-buttons {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 30px;
}

.btn-enter, .btn-leave {
padding: 12px 30px;
font-size: 16px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s;
}

.btn-enter {
background-color: #ffa31a;
color: #000000;
font-weight: bold;
}

.btn-enter:hover {
background-color: #ff9000;
}

.btn-leave {
background-color: #333333;
color: #ffffff;
}

.btn-leave:hover {
background-color: #444444;
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: #1a1a1a;
border-top: 2px solid #ffa31a;
padding: 20px;
z-index: 9999;
}

.cookie-consent.hidden {
display: none;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.cookie-content p {
flex: 1;
margin: 0;
color: #cccccc;
}

.btn-accept {
padding: 10px 25px;
background-color: #ffa31a;
color: #000000;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
transition: background-color 0.3s;
}

.btn-accept:hover {
background-color: #ff9000;
}

.cookie-link {
color: #ffa31a;
text-decoration: underline;
}

.site-header {
background-color: #1a1a1a;
padding: 15px 0;
border-bottom: 3px solid: #ffa31a;
position: sticky;
top: 0;
z-index: 1000;
}

.header-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}

.logo {
font-size: 28px;
font-weight: bold;
color: #ffa31a;
text-transform: uppercase;
letter-spacing: 1px;
}

.search-box {
flex: 1;
max-width: 500px;
position: relative;
}

.search-box input {
width: 100%;
padding: 10px 45px 10px 15px;
background-color: #2d2d2d;
border: 2px solid #3d3d3d;
border-radius: 4px;
color: #ffffff;
font-size: 14px;
}

.search-box input:focus {
outline: none;
border-color: #ffa31a;
}

#searchBtn {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
color: #ffa31a;
cursor: pointer;
}

#searchBtn:disabled {
opacity: 0.5;
cursor: not-allowed;
}

.search-page {
padding: 40px 0;
}

.search-header {
margin-bottom: 30px;
}

.search-header h1 {
font-size: 32px;
margin-bottom: 10px;
color: #ffffff;
}

.search-header h1 span {
color: #ffa31a;
}

.search-count {
color: #999999;
font-size: 16px;
}

.no-results {
text-align: center;
padding: 80px 20px;
}

.no-results.hidden {
display: none;
}

.no-results-content svg {
margin-bottom: 20px;
opacity: 0.3;
}

.no-results-content h2 {
font-size: 28px;
margin-bottom: 15px;
color: #ffffff;
}

.no-results-content p {
color: #999999;
font-size: 16px;
}

.no-results-content a {
color: #ffa31a;
text-decoration: underline;
}

.pagination {
margin: 40px 0;
padding: 20px 0;
border-top: 1px solid #2d2d2d;
}

.pagination-info {
text-align: center;
color: #999999;
font-size: 14px;
margin-bottom: 15px;
}

.pagination-links {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}

.pagination-btn {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 8px 16px;
background-color: #2d2d2d;
color: #ffffff;
border-radius: 4px;
font-size: 14px;
transition: all 0.3s;
}

.pagination-btn:hover {
background-color: #3d3d3d;
color: #ffa31a;
}

.pagination-btn svg {
width: 16px;
height: 16px;
}

.pagination-numbers {
display: flex;
align-items: center;
gap: 5px;
}

.pagination-number {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 36px;
height: 36px;
padding: 0 10px;
background-color: #2d2d2d;
color: #ffffff;
border-radius: 4px;
font-size: 14px;
transition: all 0.3s;
}

.pagination-number:hover {
background-color: #3d3d3d;
color: #ffa31a;
}

.pagination-number.active {
background-color: #ffa31a;
color: #000000;
font-weight: bold;
pointer-events: none;
}

.pagination-ellipsis {
color: #999999;
padding: 0 5px;
}

.main-nav {
display: flex;
gap: 25px;
}

.main-nav a {
color: #ffffff;
font-weight: 500;
padding: 8px 0;
}

.main-nav a:hover {
color: #ffa31a;
}

.site-main {
min-height: calc(100vh - 300px);
padding: 40px 0;
}

.hero-section {
text-align: center;
padding: 60px 20px;
background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
border-radius: 8px;
margin-bottom: 40px;
}

.hero-section h1 {
font-size: 42px;
margin-bottom: 15px;
color: #ffa31a;
}

.hero-subtitle {
font-size: 18px;
color: #cccccc;
}

.page-header {
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 2px solid #ffa31a;
}

.page-header h1 {
font-size: 36px;
margin-bottom: 10px;
color: #ffa31a;
}

.page-subtitle {
font-size: 16px;
color: #cccccc;
}

.section-title {
font-size: 28px;
margin-bottom: 25px;
color: #ffa31a;
}

.categories-section {
margin-bottom: 50px;
}

.categories-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
}

.category-card {
background-color: #1a1a1a;
padding: 30px;
border-radius: 8px;
text-align: center;
transition: all 0.3s;
border: 2px solid transparent;
}

.category-card:hover {
border-color: #ffa31a;
transform: translateY(-5px);
}

.category-name {
font-size: 20px;
font-weight: bold;
color: #ffffff;
margin-bottom: 10px;
}

.category-count {
color: #999999;
font-size: 14px;
}

.view-more {
text-align: center;
margin-top: 30px;
}

.btn-view-more {
display: inline-block;
padding: 12px 30px;
background-color: #ffa31a;
color: #000000;
font-weight: bold;
border-radius: 4px;
transition: background-color 0.3s;
}

.btn-view-more:hover {
background-color: #ff9000;
}

.videos-section {
margin-bottom: 50px;
}

.videos-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 25px;
}

.video-card {
background-color: #1a1a1a;
border-radius: 8px;
overflow: hidden;
transition: transform 0.3s;
}

.video-card:hover {
transform: translateY(-5px);
}

.video-thumbnail {
position: relative;
display: block;
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
}

.video-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}

.video-card:hover .video-thumbnail img {
transform: scale(1.1);
}

.video-duration {
position: absolute;
bottom: 8px;
right: 8px;
background-color: rgba(0, 0, 0, 0.8);
color: #ffffff;
padding: 3px 8px;
border-radius: 3px;
font-size: 12px;
font-weight: bold;
}

.video-info {
padding: 15px;
}

.video-title {
font-size: 16px;
margin-bottom: 8px;
color: #ffffff;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}

.video-meta {
display: flex;
gap: 15px;
font-size: 13px;
color: #999999;
}

.video-detail {
max-width: 1400px;
margin: 0 auto;
}

.video-player-section {
margin-bottom: 50px;
}

.video-detail-title {
font-size: 32px;
margin-bottom: 20px;
color: #ffffff;
}

.video-player {
background-color: #000000;
border-radius: 8px;
overflow: hidden;
margin-bottom: 20px;
position: relative;
}

.video-player::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 60px;
background: linear-gradient(to top, #000000 0%, transparent 100%);
pointer-events: none;
z-index: 10;
}

.video-stats {
display: flex;
gap: 25px;
padding: 15px 0;
border-bottom: 1px solid #2d2d2d;
margin-bottom: 15px;
}

.stat-item {
color: #ffa31a;
font-size: 16px;
font-weight: 600;
}

.video-categories {
padding: 15px 0;
border-bottom: 1px solid #2d2d2d;
margin-bottom: 15px;
}

.video-categories .label {
color: #999999;
margin-right: 10px;
}

.category-tag {
display: inline-block;
padding: 5px 12px;
background-color: #2d2d2d;
border-radius: 20px;
margin-right: 8px;
font-size: 14px;
transition: background-color 0.3s;
}

.category-tag:hover {
background-color: #3d3d3d;
}

.video-description {
padding: 20px 0;
}

.video-description h3 {
font-size: 20px;
margin-bottom: 10px;
color: #ffa31a;
}

.video-description p {
color: #cccccc;
line-height: 1.8;
}

.related-videos-section {
margin-top: 50px;
padding-top: 30px;
border-top: 2px solid #2d2d2d;
}

.empty-state {
text-align: center;
padding: 60px 20px;
color: #999999;
font-size: 18px;
}

.legal-content {
max-width: 900px;
margin: 0 auto;
padding: 20px;
}

.legal-content h2 {
color: #ffa31a;
font-size: 24px;
margin-top: 30px;
margin-bottom: 15px;
}

.legal-content p {
color: #cccccc;
line-height: 1.8;
margin-bottom: 15px;
}

.site-footer {
background-color: #1a1a1a;
border-top: 3px solid #ffa31a;
padding: 40px 0 20px;
margin-top: 60px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 30px;
}

.footer-section h3 {
color: #ffa31a;
margin-bottom: 15px;
font-size: 18px;
}

.footer-section p {
color: #cccccc;
margin-bottom: 8px;
font-size: 14px;
}

.footer-section a {
display: block;
color: #cccccc;
margin-bottom: 5px;
}

.footer-section a:hover {
color: #ffa31a;
}

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid #2d2d2d;
color: #999999;
font-size: 13px;
}

.footer-bottom p {
margin-bottom: 5px;
}

@media (max-width: 768px) {
.header-content {
flex-wrap: wrap;
}
.search-box {
order: 3;
width: 100%;
max-width: none;
}
.categories-grid, .videos-grid {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.hero-section h1 {
font-size: 32px;
}
}

