/* ============================================
   Long & Junior - Official Website Styles
   Modern, Animated, Responsive Design
   Colors: Navy #1a1a4e, Pink #e84a7f
   ============================================ */

/* CSS Variables */
:root {
    --primary: #1a1a4e;
    --primary-dark: #0d0d2b;
    --primary-light: #2a2a6e;
    --secondary: #e84a7f;
    --secondary-light: #ff6b9d;
    --secondary-dark: #c93a6a;
    --accent: #ff6b9d;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(232, 74, 127, 0.4);

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;

    --container-max: 1400px;
    --container-padding: 20px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background: var(--primary-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 150px;
    height: auto;
    animation: logoAnimation 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(232, 74, 127, 0.6));
}

@keyframes logoAnimation {
    0% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 30px rgba(232, 74, 127, 0.6));
    }
    25% {
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 50px rgba(232, 74, 127, 0.8));
    }
    50% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 40px rgba(232, 74, 127, 1));
    }
    75% {
        transform: scale(1.1) rotate(-5deg);
        filter: drop-shadow(0 0 50px rgba(232, 74, 127, 0.8));
    }
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 30px rgba(232, 74, 127, 0.6));
    }
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section Base */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #e84a7f 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-normal);
    cursor: default;
}

.section-title:hover {
    filter: drop-shadow(0 0 20px rgba(232, 74, 127, 0.8));
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 20px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-xl);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(232, 74, 127, 0.6);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition-normal);
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(13, 13, 43, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    overflow: visible;
}

.navbar.scrolled .nav-container {
    height: 50px;
}

.nav-logo {
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    overflow: visible;
}

.nav-logo img {
    height: 180px;
    width: auto;
    transition: var(--transition-normal);
    filter: drop-shadow(0 10px 40px rgba(232, 74, 127, 0.5));
    transform: translateY(10%);
}

.navbar.scrolled .nav-logo img {
    height: 180px;
    transform: translateY(10%);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-list li {
    display: flex;
    align-items: center;
}

.nav-list a {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: var(--transition-normal);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.nav-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0.95;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    max-width: var(--container-max);
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding: 0 var(--container-padding);
}

.hero-text {
    z-index: 1;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e84a7f 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    display: inline-block;
    transition: var(--transition-normal);
    cursor: default;
}

.hero-title:hover {
    filter: drop-shadow(0 0 30px rgba(232, 74, 127, 0.9));
    transform: scale(1.02);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gray-300);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-photo {
    width: 100%;
    max-width: 500px;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(232, 74, 127, 0.3) 0%, transparent 70%);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--primary-dark);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto auto;
    gap: 20px 60px;
    margin-bottom: 60px;
}

.about-content .about-main {
    grid-column: 1;
    grid-row: 1;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 0;
}

.about-content .about-promo-video {
    grid-column: 1;
    grid-row: 2;
}

.about-content .about-stats {
    grid-column: 2;
    grid-row: 2 / 4;
    align-self: start;
}

.about-content .about-extended {
    grid-column: 1;
    grid-row: 3;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(232, 74, 127, 0.1);
    border-color: var(--secondary);
}

.stat-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.stat-value {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 5px;
}

.about-hits {
    margin-bottom: 60px;
}

.hits-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
}

.hits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.hit-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: var(--border-radius-md);
    padding: 25px;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-secondary);
}

.hit-item:hover {
    transform: translateX(10px);
    border-color: var(--secondary);
}

.hit-item h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.hit-item p {
    font-size: 0.95rem;
    color: var(--gray-400);
}

.about-closing {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-closing p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-300);
}

.about-promo-video {
    position: relative;
    margin: 0 0 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-promo-video:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.about-promo-video img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.promo-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.promo-play-btn i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.about-promo-video:hover .promo-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary);
}

@media (max-width: 768px) {
    .about-promo-video {
        margin: 1.5rem 0;
    }

    .promo-play-btn {
        width: 60px;
        height: 60px;
    }

    .promo-play-btn i {
        font-size: 1.5rem;
        margin-left: 3px;
    }
}

.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.05;
}

.bg-circle-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

/* ============================================
   Videos Section
   ============================================ */
.videos {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.videos-featured {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.featured-video-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-secondary);
    padding: 10px 20px;
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.featured-info {
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.featured-info h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.featured-download-btn {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .featured-info {
        flex-direction: column;
        text-align: center;
    }

    .featured-download-btn {
        width: 100%;
        justify-content: center;
    }
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.video-item:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
}

.videos-cta {
    text-align: center;
}

.videos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 74, 127, 0.15) 0%, transparent 70%);
}

/* ============================================
   Kulisy Section (Disco Tripy)
   ============================================ */
.kulisy {
    background: var(--primary);
    position: relative;
}

.kulisy-description {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.8;
}

.kulisy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.kulisy-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.kulisy-item:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 74, 127, 0.3);
    box-shadow: var(--shadow-lg);
}

.kulisy-item.hidden {
    display: none;
}

.kulisy-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.kulisy-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.kulisy-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.kulisy-item:hover .kulisy-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.kulisy-info {
    padding: 20px;
}

.kulisy-info h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
}

.kulisy-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.kulisy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.kulisy-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 74, 127, 0.1) 0%, transparent 70%);
}

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

    .kulisy-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 10;
}

.video-modal-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.video-modal-player {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-title {
    margin-top: 15px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }

    .video-modal-close-btn {
        top: -45px;
        right: 5px;
    }

    .video-modal-title {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background: var(--primary);
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-tab {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(232, 74, 127, 0.3);
    color: #fff;
}

.gallery-tab.active {
    background: var(--gradient-secondary);
    border-color: transparent;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 600px) {
    .gallery-tabs {
        gap: 8px;
        margin-bottom: 25px;
    }

    .gallery-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

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

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(232, 74, 127, 0.8), transparent);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.9rem;
}

/* ============================================
   Download Section
   ============================================ */
.download {
    background: var(--primary-dark);
    position: relative;
}

.download-content {
    max-width: 1100px;
    margin: 0 auto;
}

.press-pack {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.press-pack-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--white);
}

.press-pack h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.press-pack > p {
    color: var(--gray-400);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.download-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

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

.download-item {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
}

.download-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    background: rgba(232, 74, 127, 0.1);
}

.download-item-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.download-item h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.download-item p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.download-btn:hover {
    color: var(--accent);
}

.download-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    background: var(--secondary);
    opacity: 0.03;
    border-radius: 50%;
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
}

.bg-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card > p {
    color: var(--gray-400);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}


.contact-item:hover {
    background: rgba(232, 74, 127, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #e84a7f;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #fff;
}

.contact-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-social h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.social-item.facebook:hover { background: rgba(24, 119, 242, 0.2); }
.social-item.instagram:hover { background: rgba(225, 48, 108, 0.2); }
.social-item.tiktok:hover { background: rgba(0, 0, 0, 0.3); }
.social-item.youtube:hover { background: rgba(255, 0, 0, 0.2); }

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.social-item.facebook .social-icon { background: #1877F2; }
.social-item.instagram .social-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-item.tiktok .social-icon { background: #000000; }
.social-item.youtube .social-icon { background: #FF0000; }

.social-item span {
    font-weight: 600;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(232, 74, 127, 0.1), transparent);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-dark);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-99%);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-wave path {
    fill: var(--primary-dark);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo img {
    height: 150px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.9rem;
    text-align: center;
}

.footer-credits {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.footer-credits a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-credits a:hover {
    color: var(--accent);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .about-content .about-main {
        grid-column: 1;
        grid-row: auto;
    }

    .about-content .about-promo-video {
        grid-column: 1;
        grid-row: auto;
    }

    .about-content .about-stats {
        grid-column: 1;
        grid-row: auto;
    }

    .about-content .about-extended {
        grid-column: 1;
        grid-row: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    /* Logo na mobile - zawsze duże, nie zmniejsza się */
    .nav-logo img {
        height: 180px;
        transform: translateY(20%);
    }

    .navbar.scrolled .nav-logo img {
        height: 180px;
        transform: translateY(20%);
    }

    .nav-toggle {
        display: flex;
    }

    /* Social icons na mobile - widoczne obok hamburgera */
    .nav-social {
        display: flex;
        margin-right: 15px;
    }

    .nav-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .nav-list a {
        font-size: 1.2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-photo {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

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

    .videos-featured {
        margin-bottom: 30px;
    }

    .videos-grid {
        margin-bottom: 25px;
    }

    .about-content {
        margin-bottom: 30px;
    }

    .about-hits {
        margin-bottom: 30px;
    }

    .kulisy-grid {
        margin-bottom: 25px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        white-space: normal;
    }

    .featured-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .press-pack {
        padding: 30px 20px;
    }

    .download-items {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px;
        min-height: 45px;
        max-width: 45px;
        max-height: 45px;
        flex: 0 0 45px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 15px;
    }

    .hero-photo {
        max-width: 280px;
    }

    .stats-grid {
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .hits-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    .hero-cta {
        padding: 12px 20px;
        font-size: 0.75rem;
        gap: 8px;
        white-space: nowrap;
    }

    .hero-cta i {
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(13, 13, 43, 0.98) 0%, rgba(26, 26, 78, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 25px;
    z-index: 9999;
    border-top: 1px solid rgba(232, 74, 127, 0.3);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    animation: cookieWiggle 2s ease-in-out infinite;
}

@keyframes cookieWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin: 0;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius-xl);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cookie-btn-accept {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 74, 127, 0.4);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(232, 74, 127, 0.6);
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--gray-400);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings:hover {
    color: var(--white);
    border-color: var(--secondary);
}

/* Cookie Settings Panel */
.cookie-settings {
    display: none;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-settings.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cookie-settings-header h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.cookie-settings-close {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition-normal);
}

.cookie-settings-close:hover {
    color: var(--secondary);
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.cookie-option-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    transition: var(--transition-normal);
}

.cookie-toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--secondary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(24px);
}

.cookie-toggle.disabled .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-settings-actions {
    text-align: right;
}

.cookie-btn-save {
    background: var(--gradient-secondary);
    color: var(--white);
}

.cookie-btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(232, 74, 127, 0.4);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .cookie-options {
        grid-template-columns: 1fr;
    }
}

/* Selection */
::selection {
    background: var(--secondary);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ============================================
   POPRAWKI KLIENTA - Grudzień 2024
   ============================================ */

/* 1. MOBILE: Tekst o zespole justify + mniejszy font */
@media (max-width: 992px) {
    .about-content .about-main,
    .about-content .about-extended {
        text-align: justify;
    }
}

@media (max-width: 768px) {
    .about-content .about-extended {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-content .about-main {
        font-size: 1rem;
    }
}

/* 2. MOBILE: Social media w 2 kolumnach - mniejsze boxy */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .social-item {
        padding: 12px 10px !important;
        gap: 10px !important;
    }

    .social-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }

    .social-item span {
        font-size: 0.85rem !important;
    }
}

/* 3. Odbicie lustrzane zdjęcia hero */
.hero-photo {
    transform: scaleX(-1);
}

@keyframes heroFloat {
    0%, 100% { transform: scaleX(-1) translateY(0); }
    50% { transform: scaleX(-1) translateY(-20px); }
}

/* 4. Style dla hitów z dużymi liczbami odsłon */
.hit-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hit-views {
    flex-shrink: 0;
    text-align: center;
    min-width: 100px;
}

.hit-views-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hit-views-unit {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-top: 2px;
    white-space: nowrap;
}

.hit-views-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-top: 2px;
}

.hit-content {
    flex: 1;
}

.hit-content h4 {
    margin-bottom: 5px;
}

@media (max-width: 480px) {
    .hit-views-number {
        font-size: 1.8rem;
    }

    .hit-views-unit {
        font-size: 0.7rem;
    }

    .hit-views {
        min-width: 70px;
    }

    .hit-item {
        gap: 15px;
    }
}

/* 5. Przycisk "Zobacz więcej" dla teledysków i galerii */
.show-more-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-xl);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-show-more:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-show-more.hidden {
    display: none;
}

/* Ukrywanie elementów */
.video-item.hidden,
.gallery-item.hidden {
    display: none;
}

/* 6. Loga w stopce obok siebie */
.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-partner a {
    display: inline-block;
    transition: var(--transition-normal);
}

.footer-partner a:hover {
    transform: scale(1.05);
}

.partner-logo {
    height: 80px !important;
    max-height: 80px !important;
    width: auto !important;
    filter: brightness(1);
    transition: var(--transition-normal);
}

.partner-logo:hover {
    filter: brightness(1.1);
}

/* Wyrównanie rozmiaru logo zespołu */
.footer-logos .footer-logo {
    display: inline-block;
    transition: var(--transition-normal);
}

.footer-logos .footer-logo:hover {
    transform: scale(1.05);
}

.footer-logos .footer-logo img {
    height: 150px !important;
    max-height: 150px !important;
    transition: var(--transition-normal);
}

.footer-logos .footer-logo:hover img {
    filter: brightness(1.1);
}

/* 7. Wyróżnienie linku Taneczny Spodek w menu */
.nav-list a[data-section="tanecznyspodek"] {
    color: var(--secondary) !important;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-logos {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .partner-logo {
        height: 80px !important;
        max-height: 80px !important;
    }

    .footer-logos .footer-logo img {
        height: 160px !important;
        max-height: 160px !important;
    }
}

@media (max-width: 480px) {
    .footer-logos {
        gap: 10px;
    }

    .partner-logo {
        height: 60px !important;
        max-height: 60px !important;
    }

    .footer-logos .footer-logo img {
        height: 120px !important;
        max-height: 120px !important;
    }
}

/* =====================================================
   NEWS CLOUD - Aktualności
   ===================================================== */

.news-cloud {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: linear-gradient(135deg, rgba(26, 26, 78, 0.98), rgba(13, 13, 43, 0.98));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 74, 127, 0.2);
    border: 1px solid rgba(232, 74, 127, 0.3);
    z-index: 1000;
    transform: translateX(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.news-cloud.active {
    transform: translateX(0);
    opacity: 1;
}

.news-cloud.hiding {
    transform: translateX(150%);
    opacity: 0;
}

.news-cloud-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-cloud-close:hover {
    background: rgba(255, 82, 82, 0.3);
    color: #ff5252;
    transform: rotate(90deg);
}

.news-cloud-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-cloud-nav.hidden {
    display: none;
}

.news-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(232, 74, 127, 0.2);
    border: 1px solid rgba(232, 74, 127, 0.3);
    color: var(--secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-nav-btn:hover {
    background: rgba(232, 74, 127, 0.4);
    transform: scale(1.1);
}

.news-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.news-counter {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 50px;
    text-align: center;
}

.news-cloud-content {
    animation: fadeInContent 0.3s ease;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-cloud-date {
    display: inline-block;
    background: rgba(232, 74, 127, 0.2);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.news-cloud-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.news-cloud-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 15px;
    max-height: 150px;
    overflow-y: auto;
    padding-right: 5px;
}

.news-cloud-text::-webkit-scrollbar {
    width: 4px;
}

.news-cloud-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.news-cloud-text::-webkit-scrollbar-thumb {
    background: rgba(232, 74, 127, 0.5);
    border-radius: 2px;
}

.news-cloud-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 18px;
    background: rgba(232, 74, 127, 0.15);
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.news-cloud-link:hover {
    background: rgba(232, 74, 127, 0.3);
    transform: translateX(5px);
}

.news-cloud-link.hidden {
    display: none;
}

.news-cloud-link i {
    font-size: 0.8rem;
}

/* News Tab (collapsed state) */
.news-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    background: linear-gradient(135deg, rgba(232, 74, 127, 0.95), rgba(255, 107, 157, 0.95));
    padding: 15px 12px;
    border-radius: 15px 0 0 15px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

.news-tab.active {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.news-tab:hover {
    padding-right: 18px;
    box-shadow: -10px 0 40px rgba(232, 74, 127, 0.4);
}

.news-tab i {
    font-size: 1.2rem;
    color: #fff;
}

.news-tab span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Pulse animation for tab */
.news-tab.pulse::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .news-cloud {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        max-width: none;
        padding: 18px;
    }

    .news-cloud-title {
        font-size: 1rem;
    }

    .news-cloud-text {
        font-size: 0.85rem;
        max-height: 120px;
    }

    .news-tab {
        top: auto;
        bottom: 100px;
        transform: translateX(100%);
    }

    .news-tab.active {
        transform: translateX(0);
    }

    .news-tab span {
        font-size: 0.7rem;
    }
}

/* ============================================
   Concerts Section
   ============================================ */

.concerts {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.concerts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e84a7f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.concerts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.concert-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.concert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.concert-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 74, 127, 0.3);
    box-shadow: 0 15px 40px rgba(232, 74, 127, 0.2);
}

.concert-card:hover::before {
    transform: scaleX(1);
}

.concert-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.concert-date-badge i {
    font-size: 0.9rem;
}

.concert-type {
    color: var(--secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.concert-venue {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.concert-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.concert-location i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.concert-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 8px;
}

.concert-time i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* Empty state */
.concerts-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.concerts-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--secondary);
    opacity: 0.5;
}

.concerts-empty p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .concerts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

    .concert-card {
        padding: 20px;
    }

    .concert-venue {
        font-size: 1.1rem;
    }
}
