/* Hero Section - Slider */
.hero {
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-video {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-slide-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-slide-static {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23333" width="1920" height="1080"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-slide-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease;
    position: relative;
}

.hero-banner-link:hover {
    opacity: 0.9;
}

.hero-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-banner-front {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
    padding-top: 90px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-muted);
}

.hero-genre {
    color: var(--primary-color);
    font-weight: bold;
}

.hero-rating {
    background: #e50914;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

.hero-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title-logo {
    max-width: 370px;
    max-height: 120px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.hero-description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sound-control {
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
    padding: 8px;
}

.sound-control i {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.sound-control svg {
    width: 28px;
    height: 28px;
}

.sound-control:hover {
    color: var(--primary-color);
}

.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50px;
    padding: 15px 25px;
    margin-top: 20px;
    color: #000000;
    font-weight: bold;
}

.price-text {
    font-size: 14px;
    margin-right: 5px;
}

.price-amount {
    font-size: 32px;
    font-weight: bold;
    margin: 0 5px;
}

.price-period {
    font-size: 14px;
    margin-left: 5px;
}

/* Thumbnail Grid */
.thumbnails-container {
    position: relative;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    overflow: hidden;
}

.thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #000000;
    border: 1px solid var(--primary-color);
}

.thumbnail:hover {
    z-index: 10;
    position: relative;
}

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

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

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.thumbnail:hover .thumbnail-overlay {
    transform: translateY(0);
}

.thumbnail-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.thumbnail-info {
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive Scrolling Rows */
.scroll-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

.scroll-thumbnail {
    flex: 0 0 300px;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    background: #000000;
    border: 1px solid var(--primary-color);
}

/* Thumbnail elements in scroll-row should have same width as scroll-thumbnail */
.scroll-row .thumbnail {
    flex: 0 0 300px;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    background: #000000;
    border: 1px solid var(--primary-color);
}

.scroll-thumbnail:hover {
    z-index: 10;
    position: relative;
}

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

.scroll-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Hover effects for thumbnail elements in scroll-row */
.scroll-row .thumbnail:hover {
    z-index: 10;
    position: relative;
}

.scroll-row .thumbnail:hover img {
    transform: scale(1.1);
}

.scroll-row .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.scroll-container {
    position: relative;
}

.scroll-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
}

.scroll-arrow i {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
}

.scroll-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.scroll-arrow:hover i {
    color: var(--primary-color);
}

.scroll-arrow-left {
    left: 0;
}

.scroll-arrow-right {
    right: 0;
}

.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-container:hover .scroll-arrow:not(.hidden) {
    opacity: 1;
}

.scroll-arrow:hover {
    opacity: 1 !important;
}

/* Hero Video Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* TOP 10 Section */
.top10-row {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 50px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
}

.top10-row::-webkit-scrollbar {
    display: none;
}

.top10-item {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-left: 88px;
}

.top10-thumbnail {
    width: 300px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    background: #000000;
    border: 1px solid var(--primary-color);
    flex-shrink: 0;
}

.top10-thumbnail:hover {
    z-index: 10;
    position: relative;
}

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

.top10-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.top10-number {
    position: absolute;
    top: 30%;
    left: -23px;
    transform: translateY(-50%);
    background: none;
    color: var(--primary-color);
    font-size: 284px;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    text-align: right;
    opacity: 1;
    pointer-events: none;
    width: 120px;
}

/* Special adjustment for number 10 */
.top10-item:nth-child(10) .top10-number {
    left: -60px;
    letter-spacing: -65px;
}

.top10-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e50914;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 5;
}

.top10-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.top10-thumbnail:hover .top10-overlay {
    transform: translateY(0);
}

.top10-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.top10-info {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.top10-description {
    font-size: 12px;
    color: #cccccc;
    line-height: 1.4;
}

/* Placeholder Images */
.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Disable hover effects on mobile */
    .thumbnail:hover,
    .scroll-thumbnail:hover,
    .top10-thumbnail:hover,
    .scroll-row .thumbnail:hover {
        z-index: auto;
        position: static;
    }
    
    .thumbnail:hover img,
    .scroll-thumbnail:hover img,
    .top10-thumbnail:hover img,
    .scroll-row .thumbnail:hover img {
        transform: none;
    }
    
    .thumbnail:hover .thumbnail-overlay,
    .top10-thumbnail:hover .top10-overlay {
        transform: none;
    }
    
    .header {
        padding: 15px 20px;
    }

    .logo img {
        height: 32px;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero {
        height: 70vh;
    }

    .hero-slide {
        padding: 0 20px;
    }

    .hero-slide-banner {
        padding: 0;
    }

    .hero-banner-bg {
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
    }

    .hero-title {
        font-size: 40px;
    }
    
    .hero-title-logo {
        max-width: 60%;
        max-height: 120px;
        z-index: 20;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-meta {
        font-size: 14px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-banner-front {
        max-width: 80%;
        max-height: 60%;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .btn-primary::before,
    .btn-secondary::before {
        display: none;
    }

    .slider-indicators {
        left: 50%;
        transform: translateX(-50%);
    }

    .content {
        padding: 0 20px;
    }

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

    .scroll-thumbnail {
        flex: 0 0 250px;
    }

    .scroll-row .thumbnail {
        flex: 0 0 250px;
    }

    .top10-thumbnail {
        width: 250px;
        height: 375px;
    }
    
    .top10-item {
        padding-left: 88px;
    }
    
    .top10-number {
        font-size: 280px;
        left: -23px;
        width: 90px;
    }
    
    /* Special adjustment for number 10 on tablet */
    .top10-item:nth-child(10) .top10-number {
        left: -60px;
        letter-spacing: -65px;
    }
    
    /* Hide scroll arrows on mobile - swipe navigation is better */
    .scroll-arrow {
        display: none !important;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-social,
    .footer-logo,
    .footer-copyright {
        text-align: center;
    }

    .social-list {
        justify-content: center;
    }

    .footer {
        padding: 30px 0;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 28px;
    }

    .hero-title {
        font-size: 32px;
    }
    
    .hero-title-logo {
        max-width: 60%;
        max-height: 90px;
        z-index: 20;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .thumbnails-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .scroll-thumbnail {
        flex: 0 0 200px;
    }

    .scroll-row .thumbnail {
        flex: 0 0 200px;
    }

    .top10-thumbnail {
        width: 200px;
        height: 300px;
    }
    
    .top10-item {
        padding-left: 65px;
    }
    
    .top10-number {
        font-size: 220px;
        left: -23px;
        width: 80px;
    }
    
    /* Special adjustment for number 10 on mobile */
    .top10-item:nth-child(10) .top10-number {
        left: -60px;
        letter-spacing: -65px;
    }

    .social-list {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .social-link i {
        width: 20px;
        height: 20px;
    }
}

/* Prehrat Page Styles */
.prehrat-page {
    min-height: 100vh;
    background: var(--background-color);
    padding-top: 100px; /* Account for fixed header */
}

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

.prehrat-hero {
    text-align: center;
    padding: 80px 0 120px 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.prehrat-icon {
    margin-bottom: 30px;
}

.prehrat-shield-icon {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    stroke-width: 1.5;
}

.prehrat-headline {
    margin-bottom: 40px;
    line-height: 1.1;
}

.prehrat-headline-main {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.prehrat-headline-sub {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.prehrat-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.prehrat-support-btn {
    font-size: 20px;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background-color: #75FB99;
    color: #000000;
    box-shadow: 0 6px 20px rgba(117, 251, 153, 0.3);
}

.prehrat-support-btn:hover {
    transform: translateY(-3px);
    background-color: #5ee080;
    box-shadow: 0 8px 25px rgba(117, 251, 153, 0.4);
}

.prehrat-donation-info {
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.prehrat-donation-info:hover {
    color: var(--primary-color);
}

.prehrat-info {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 40px 0;
}

.prehrat-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.prehrat-info-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(117, 251, 153, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.prehrat-info-item:hover {
    transform: translateY(-5px);
    border-color: rgba(117, 251, 153, 0.4);
}

.prehrat-info-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.prehrat-info-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* Responsive Design for Prehrat Page */
@media (max-width: 768px) {
    .prehrat-hero {
        padding: 60px 0 80px 0;
    }
    
    .prehrat-shield-icon {
        width: 60px;
        height: 60px;
    }
    
    .prehrat-headline-main {
        font-size: 36px;
    }
    
    .prehrat-headline-sub {
        font-size: 28px;
    }
    
    .prehrat-description {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .prehrat-support-btn {
        font-size: 18px;
        padding: 16px 32px;
    }
    
    .prehrat-info {
        padding: 60px 0;
        margin: 20px 0;
    }
    
    .prehrat-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .prehrat-info-item {
        padding: 25px 15px;
    }
    
    .prehrat-info-item h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .prehrat-info-item p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .prehrat-shield-icon {
        width: 50px;
        height: 50px;
    }
    
    .prehrat-headline-main {
        font-size: 28px;
    }
    
    .prehrat-headline-sub {
        font-size: 22px;
    }
    
    .prehrat-description {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .prehrat-support-btn {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .prehrat-donation-info {
        font-size: 14px;
    }
}
.prehrat-error-code {
    font-size: 12px;
    color: var(--text-color);
    margin-top: 10px;
    font-family: "Courier New", monospace;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Back Button */
.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--primary-color);
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: absolute;
    top: 90px;
    left: 0;
    outline: none;
}

.back-button:hover {
    transform: translateX(-5px);
    opacity: 0.8;
}

.back-button:focus {
    outline: none;
}

.back-button i {
    width: 20px;
    height: 20px;
}

.back-button span {
    font-family: 'Nunito Sans', sans-serif;
}

@media (max-width: 768px) {
    .back-button {
        padding: 8px 16px;
        font-size: 14px;
        top: 20px;
    }

    .back-button i {
        width: 18px;
        height: 18px;
    }
}
