/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Modern color palette - 2025 trends */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #6c5ce7;
    --accent-color: #fd79a8;
    --accent-light: #a29bfe;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.1);
    --bg-glass-strong: rgba(255, 255, 255, 0.25);
    --border-color: rgba(255, 255, 255, 0.18);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Base body styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Cookie Notice - Glassmorphism */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--border-color);
    color: var(--bg-white);
    padding: 24px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

/* Data Collection Notice */
.data-notice {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 40px;
    z-index: 10001;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.data-notice.show {
    opacity: 1;
    visibility: visible;
}

.data-notice-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.data-notice-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

.data-notice-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.data-notice-content a:hover {
    text-decoration: underline;
}

.data-notice-btn {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    width: 100%;
}

.data-notice-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
    font-size: 15px;
}

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

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

.cookie-btn {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Header - Glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section - Modern with Parallax */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: visible;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    flex-shrink: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

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

.hero-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    display: block;
    transform: scale(1.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slide.active .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(108, 92, 231, 0.3) 50%, rgba(253, 121, 168, 0.2) 100%);
    backdrop-filter: blur(1px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    padding: 60px 40px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
}

.hero-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
    z-index: 10;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--bg-white);
    font-size: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 12;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: var(--bg-white);
    transform: scale(1.4);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
}

/* Hero Accordion - Glassmorphism */
.hero-accordion {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: -80px auto 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 15;
    margin-bottom: 60px;
}

.accordion-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.accordion-item:hover {
    background: rgba(108, 92, 231, 0.05);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--secondary-color);
}

.accordion-icon {
    font-size: 28px;
    transition: var(--transition);
    color: var(--secondary-color);
    font-weight: 300;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: rgba(108, 92, 231, 0.2);
    color: var(--secondary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 0 20px 0;
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 24px;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 17px;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Collection Section */
.collection-section {
    padding: 120px 0;
    background: var(--bg-white);
}

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

.collection-item {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.collection-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.collection-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item:hover .collection-image img {
    transform: scale(1.15);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

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

.collection-btn {
    background: var(--bg-white);
    color: var(--secondary-color);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.collection-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.collection-info {
    padding: 28px;
}

.collection-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.collection-info p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Artists Section */
.artists-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.artist-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.artist-image {
    height: 320px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-info {
    padding: 32px;
}

.artist-info h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.artist-specialty {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 16px;
}

.artist-info p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -2px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 500;
}

/* Events Section */
.events-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.event-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.event-image {
    height: 280px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 32px;
}

.event-date {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 16px;
}

.event-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.event-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 15px;
}

.event-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.event-link::after {
    content: '→';
    transition: var(--transition);
}

.event-link:hover {
    color: var(--accent-color);
    gap: 12px;
}

/* How It Works Section */
.how-it-works-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.step-item {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Offer Section */
.offer-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.offer-content {
    max-width: 900px;
    margin: 0 auto;
}

.offer-text {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-text h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.offer-text h3:first-child {
    margin-top: 0;
}

.offer-text p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--bg-white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3436 100%);
    color: var(--bg-white);
    padding: 80px 0 30px;
    position: relative;
}

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--accent-light);
    font-weight: 700;
}

.footer-section p {
    line-height: 1.9;
    opacity: 0.85;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-light);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* Policy Pages */
.policy-section {
    padding: 100px 0;
    min-height: 70vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.policy-section h1 {
    font-size: clamp(36px, 5vw, 48px);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.policy-date {
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
    font-size: 15px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-top: 50px;
    margin-bottom: 24px;
    font-weight: 700;
}

.policy-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 24px;
    font-size: 16px;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 24px;
}

.policy-content li {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 12px;
    font-size: 16px;
}

.policy-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.policy-content a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

/* Thanks Page */
.thanks-section {
    padding: 150px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    margin: 0 auto 40px;
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(79, 172, 254, 0.4);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thanks-content h1 {
    font-size: clamp(32px, 5vw, 42px);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 17px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.thanks-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 40px 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        gap: 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-list.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

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

    .hero-accordion {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: -60px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }
    
    .hero-dots {
        bottom: 80px;
    }

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

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

    .section-title {
        font-size: 40px;
    }

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

    .hero-slider {
        height: 85vh;
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 75vh;
        min-height: 500px;
    }
    
    .hero-accordion {
        margin-top: -40px;
        padding: 24px;
        width: 95%;
    }
    
    .hero-dots {
        bottom: 60px;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .hero-content {
        padding: 40px 24px;
    }

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

    .cookie-content p {
        margin-bottom: 20px;
    }

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

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

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

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

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

    .policy-content {
        padding: 30px 24px;
    }

    .contact-form {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-accordion {
        margin-top: -30px;
        padding: 20px;
        width: 90%;
    }
    
    .hero-dots {
        bottom: 50px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-btn {
        padding: 16px 36px;
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .stat-number {
        font-size: 48px;
    }

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

    .hero-prev,
    .hero-next {
        width: 48px;
        height: 48px;
        font-size: 28px;
    }
}
