:root {
    --bg-primary: #050308;
    --bg-card: #111111;
    --text-primary: #F5F5F5;
    --text-secondary: #CCCCCC;
    --divider: #2A2A2A;
    --accent-neon: #FF00FF;
    --accent-hover: #FF66FF;
    --white: #FFFFFF;
    --black: #000000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background gradient effect */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10%, -10%); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 3, 8, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--divider);
    z-index: 1000;
    padding: 1.5rem 2rem;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--accent-neon));
}

nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-neon);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-neon);
}

.nav-links a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-neon);
    transform: translateY(-2px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    outline: none;
}

.burger:focus-visible {
    outline: 2px solid var(--accent-neon);
    outline-offset: 2px;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--accent-neon);
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-bottom: 1px solid var(--divider);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-neon);
    transition: width 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    color: var(--accent-neon);
}

.mobile-menu a:hover::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section */
section {
    padding: 8rem 0;
    position: relative;
}

section:first-of-type {
    padding-top: 10rem;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

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

.hero-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-neon);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-neon);
    color: var(--white);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
}

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

.btn-secondary:hover {
    background: var(--accent-neon);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--bg-card);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--divider);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-hover), transparent);
    border-radius: 24px;
    opacity: 0.3;
    z-index: -1;
}

/* Section Title */
.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--white), var(--accent-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
#about {
    background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.3), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--divider);
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-features li:last-child {
    border-bottom: none;
}

.about-features li::before {
    content: '→';
    color: var(--accent-neon);
    font-size: 1.5rem;
    font-weight: 700;
}

.about-image {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--divider);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Art Gallery */
#art {
    position: relative;
}

.art-intro {
    max-width: 800px;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--divider);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-neon);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.2);
}

.gallery-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    overflow: hidden;
}

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

.gallery-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

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

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.art-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

/* Words Section */
#words {
    background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.3), transparent);
}

.words-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.words-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.word-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--divider);
    transition: all 0.3s ease;
}

.word-card:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.15);
}

.word-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.word-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.word-card a {
    color: var(--accent-neon);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.word-card a:hover {
    color: var(--accent-hover);
}

.spotify-embed {
    margin-bottom: 2rem;
    scroll-margin-top: 120px;
}

.spotify-embed h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.spotify-embed iframe {
    border-radius: 12px;
}

.platform-section-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.platform-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--divider);
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-link:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.15);
}

.platform-link .platform-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.platform-link .platform-logo svg {
    width: 36px;
    height: 36px;
}

.platform-link .platform-name {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Collaboration Section */
#collab {
    position: relative;
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.collab-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--divider);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.collab-card:hover {
    border-color: var(--accent-neon);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 0, 255, 0.2);
}

.collab-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.collab-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.collab-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.collab-card li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.collab-card li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-neon);
}

.collab-card .btn-secondary {
    margin-top: auto;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
}

/* Newsletter Section */
#newsletter {
    background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.5), transparent);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.newsletter-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--divider);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--bg-primary);
    border: 2px solid var(--divider);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-neon);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-neon);
}

.checkbox-group label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--accent-neon);
    text-decoration: underline;
}

.checkbox-group label a:hover {
    color: var(--accent-hover);
}

.form-message {
    display: none;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid var(--accent-neon);
    color: var(--accent-neon);
}

.form-message.show {
    display: block;
}

/* Contact Section */
#contact {
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--divider);
}

.contact-item h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-neon);
    margin-bottom: 0.5rem;
}

.contact-item p, .contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-hover);
}

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--divider);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent-neon);
    transform: translateX(5px);
}

.social-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.social-link.disabled:hover {
    transform: none;
    border-color: var(--divider);
}

.social-link span:first-child {
    font-size: 1.5rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--divider);
    padding: 3rem 0;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-tagline {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    color: var(--accent-neon);
    font-style: italic;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.lightbox-content img {
    max-width: 85vw;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(255, 0, 255, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -10px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: 300;
}

.lightbox-close:hover {
    color: var(--accent-neon);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-neon);
    color: var(--white);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    background: var(--accent-neon);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-title {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--divider);
    padding: 1.25rem 2rem;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.cookie-text a:hover {
    color: var(--accent-hover);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--accent-neon);
    color: var(--black);
}

.cookie-btn-accept:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid var(--divider);
    color: var(--text-secondary);
}

.cookie-btn-decline:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 6rem 0;
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-grid,
    .words-grid,
    .collab-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }
    
    .nav-links,
    .social-icons {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid,
    .words-grid {
        grid-template-columns: 1fr;
    }
    
    .collab-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .lightbox {
        padding: 1rem;
    }
    
    .lightbox-content {
        max-width: 90vw;
        max-height: 80vh;
    }
    
    .lightbox-content img {
        max-width: 90vw;
        max-height: 65vh;
        border-radius: 4px;
    }
    
    .lightbox-close {
        top: -45px;
        right: 0;
        font-size: 2.5rem;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-title {
        font-size: 1rem;
        bottom: -50px;
        max-width: 90%;
        white-space: normal;
    }
    
    .logo-image {
        height: 40px;
    }
}

/* Visually hidden but accessible to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-neon);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Nav badge (Hravé nudesky) */
.nav-links a {
    white-space: nowrap;
}

@media (max-width: 1200px) {
    nav {
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.2rem;
    }
}

/* S 9 položkami menu se ikonky sociálních sítí nevejdou – jsou v Kontaktu */
@media (max-width: 1150px) and (min-width: 769px) {
    .social-icons {
        display: none;
    }
}

.nav-badge {
    display: inline-block;
    background: var(--accent-neon);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    margin-left: 0.4rem;
    vertical-align: middle;
    white-space: nowrap;
}

/* Nudesky teaser (homepage, sekce Spolupráce) */
.nudesky-teaser-box {
    margin-bottom: 2rem;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--accent-neon);
    border-radius: 24px;
    padding: 4rem 3rem;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255, 0, 255, 0.12);
}

.nudesky-teaser-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(255, 0, 255, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

.nudesky-teaser-text {
    position: relative;
    max-width: 700px;
}

.nudesky-teaser-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--accent-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nudesky-teaser-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.nudesky-teaser-magnet {
    position: absolute;
    right: 4%;
    bottom: -35px;
    width: clamp(100px, 13vw, 180px);
    height: auto;
    pointer-events: none;
    --r: 8deg;
    transform: rotate(var(--r));
    animation: magnetFloat 7s ease-in-out infinite alternate;
    filter: drop-shadow(0 12px 30px rgba(255, 0, 255, 0.3));
}

@media (max-width: 768px) {
    .nudesky-teaser-magnet {
        width: 90px;
        right: 2%;
        bottom: -20px;
    }
}

/* ===== Hravé nudesky page ===== */
.page-hero {
    min-height: auto;
    padding-top: 12rem;
    padding-bottom: 4rem;
}

.page-hero .hero-text {
    max-width: 800px;
}

.nudesky-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Steps (jak to probíhá) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--divider);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--accent-neon);
}

.step-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-neon);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--divider);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-neon);
    box-shadow: 0 15px 50px rgba(255, 0, 255, 0.2);
}

.pricing-card.featured {
    border-color: var(--accent-neon);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 2.5rem;
    background: var(--accent-neon);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 1rem;
    border-radius: 999px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.2rem;
    color: var(--accent-neon);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--divider);
    display: flex;
    align-items: center;
}

/* Stejné položky obou karet drží na stejném řádku i při zalomení textu */
@media (min-width: 769px) {
    .pricing-card li {
        min-height: 4em;
    }

    .pricing-tagline {
        min-height: 5.2em;
    }
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-neon);
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    margin-top: auto;
    text-align: center;
}

/* Video ukázky nudesek – každá samostatně, velká, střídavě u krajů */
.nudeska-showcase {
    display: flex;
    flex-direction: column;
    gap: 7rem;
}

.nudeska-item {
    width: min(480px, 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--divider);
    background: var(--bg-card);
    transition: all 0.3s ease;
}

.nudeska-item:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.2);
}

.nudeska-item:nth-child(odd) {
    align-self: flex-start;
    margin-left: 8%;
}

.nudeska-item:nth-child(even) {
    align-self: flex-end;
    margin-right: 8%;
}

.nudeska-item.nudeska-wide {
    width: min(760px, 100%);
    align-self: center;
    margin-left: 0;
    margin-right: 0;
}

.nudeska-media video {
    width: 100%;
    height: auto;
    display: block;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

@media (max-width: 768px) {
    .nudeska-showcase {
        gap: 3.5rem;
    }

    .nudeska-item:nth-child(odd),
    .nudeska-item:nth-child(even) {
        align-self: center;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Gallery placeholders (než budou fotky) */
.gallery-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--divider);
}

.gallery-placeholder span:first-child {
    font-size: 2.5rem;
}

/* FAQ / diskrétnost */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--divider);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-neon);
}

.faq-item h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Obrazy k prodeji ===== */
.sale-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.8rem 0 1rem;
}

.sale-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--divider);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.sale-price {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    color: var(--accent-neon);
    white-space: nowrap;
}

.sale-price.sold {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.sale-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.status-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.status-badge.available {
    background: var(--accent-neon);
    color: var(--black);
}

.status-badge.reserved {
    background: transparent;
    border: 1px solid var(--accent-neon);
    color: var(--accent-neon);
    backdrop-filter: blur(10px);
}

.status-badge.sold {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--divider);
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.sale-item {
    position: relative;
    cursor: default;
}

.sale-item.is-sold .gallery-image,
.sale-item.is-sold .gallery-placeholder {
    opacity: 0.45;
    filter: grayscale(0.8);
}

/* ===== Poletující magnetky (Hravé nudesky) ===== */
body {
    position: relative;
}

.magnet-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Obsah stránky nad magnetkami – na užších oknech vklouznou za text, ne přes něj */
main {
    position: relative;
    z-index: 1;
}

.magnet {
    position: absolute;
    width: var(--w, 160px);
    will-change: transform;
}

.magnet img {
    width: 100%;
    height: auto;
    transform: rotate(var(--r, 0deg));
    animation: magnetFloat 7s ease-in-out infinite alternate;
    animation-delay: var(--d, 0s);
    filter: drop-shadow(0 12px 30px rgba(255, 0, 255, 0.25));
}

@keyframes magnetFloat {
    from {
        transform: rotate(var(--r, 0deg)) translateY(-12px);
    }
    to {
        transform: rotate(calc(var(--r, 0deg) + 6deg)) translateY(14px);
    }
}

/* Běžící pás magnetek (mobil a tablet) */
.magnet-strip {
    display: none;
    padding: 3rem 0;
}

.magnet-strip-caption {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.magnet-marquee {
    overflow: hidden;
}

.magnet-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: magnetMarquee 35s linear infinite;
}

.magnet-track img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 8px 20px rgba(255, 0, 255, 0.25));
}

.magnet-track img:nth-child(odd) {
    transform: rotate(-6deg);
}

.magnet-track img:nth-child(even) {
    transform: rotate(5deg);
}

@keyframes magnetMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
    .magnet-field {
        display: none;
    }

    .magnet-strip {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    .magnet img,
    .magnet-track {
        animation: none;
    }
}

/* Nudesky final CTA */
.nudesky-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.nudesky-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .nudesky-teaser-box {
        padding: 2.5rem 1.5rem;
    }

    .page-hero {
        padding-top: 9rem;
    }

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