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

body {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #181818 0%, #23243a 40%, #1a1a2e 80%, #23243a 100%);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before, body::after, body .bg-glow1, body .bg-glow2, body .bg-glow3, body .bg-pattern {
    pointer-events: none;
}

/* Поверх glow-элементов весь контент сайта должен быть выше */
main, header, footer, section, .container, .navbar, .header {
    position: relative;
    z-index: 1;
}

/* Для плавного появления фона */
body {
    animation: bodyFadeIn 1.2s cubic-bezier(.77,0,.18,1) 0.2s both;
}
@keyframes bodyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body::before, body::after, body .bg-glow1, body .bg-glow2, body .bg-glow3, body .bg-pattern {
    pointer-events: none;
    position: fixed;
    z-index: 0;
}
body::before {
    content: '';
    position: fixed;
    z-index: 0;
    pointer-events: none;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: url("textures/noise.png") repeat;
    opacity: 0.07;
}
body::after {
    content: '';
    width: 700px;
    height: 700px;
    left: -200px;
    top: 10vh;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.22;
    background: radial-gradient(circle, #d4af37 0%, transparent 70%);
}
.bg-glow1 {
    content: '';
    width: 400px;
    height: 400px;
    left: 40vw;
    top: 60vh;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.13;
    background: radial-gradient(circle, #fff 0%, transparent 80%);
    position: fixed;
}
.bg-glow2 {
    content: '';
    width: 300px;
    height: 300px;
    left: 70vw;
    top: 20vh;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.10;
    background: radial-gradient(circle, #d4af37 0%, transparent 80%);
    position: fixed;
}
.bg-glow3 {
    content: '';
    width: 250px;
    height: 250px;
    left: 10vw;
    top: 80vh;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.10;
    background: radial-gradient(circle, #4f44e0 0%, transparent 80%);
    position: fixed;
}
.bg-pattern {
    content: '';
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    opacity: 0.07;
    background-image: url("textures/cubes.png");
    background-size: 200px 200px;
    background-repeat: repeat;
    position: fixed;
}
@media (max-width: 900px) {
    body::before, body::after, .bg-glow1, .bg-glow2, .bg-glow3 {
        width: 180px !important;
        height: 180px !important;
        filter: blur(30px) !important;
    }
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #d4af37;
    letter-spacing: 8px;
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

.loading-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    letter-spacing: 4px;
    margin-top: 10px;
}

.loading-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 20px auto;
    animation: shimmer 2s infinite;
}

.loading-progress {
    margin-top: 40px;
}

.progress-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.progress-text {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1.5rem 0;
}

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

.logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

.nav-menu a:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #d4af37;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding-top: 180px;
}

@media (max-width: 1200px) {
    .hero {
        padding-top: 140px;
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 100px !important;
  }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    will-change: transform;
}

.hero-background::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212,175,55,0.13) 0%, rgba(120,0,255,0.09) 60%, transparent 100%);
    filter: blur(60px);
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-text {
    text-align: left;
}
.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    margin-top: 2rem;
    justify-content: flex-start;
    text-align: left;
}

.btn {
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    background: none;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-5px);
}

.btn-large {
    padding: 25px 50px;
    font-size: 1.2rem;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.hero-stats {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.stat-item {
    text-align: left;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    min-width: 320px;
    max-width: 500px;
    width: 100%;
    margin: 0 0 0 0;
}

.stat-item:not(:first-child) {
    margin-left: 2rem;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, #d4af37, transparent);
    margin: 0 auto 10px;
    animation: scrollDown 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: 100px 0 80px 0;
    background: #000;
    color: white;
    margin-bottom: 0;
}
.section-header {
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    margin: 0 auto;
    border-radius: 2px;
    margin-bottom: 0;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #d4af37;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(10px);
}

.feature-item i {
    color: #d4af37;
    font-size: 1.5rem;
}

.feature-item span {
    color: white;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Models Section */
.models {
    background: #000;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 15px 30px;
    border: 2px solid #d4af37;
    background: transparent;
    color: #d4af37;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.filter-btn.active,
.filter-btn:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.filter-btn.active .btn-underline,
.filter-btn:hover .btn-underline {
    width: 80%;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #222;
    padding-bottom: 20px;
}
.models-grid::-webkit-scrollbar {
    width: 8px;
    background: #222;
    border-radius: 8px;
}
.models-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4af37 60%, #f4d03f 100%);
    border-radius: 8px;
}
.models-grid::-webkit-scrollbar-thumb:hover {
    background: #bfa13a;
}

.model-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    margin-bottom: 0;
}

.model-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.3);
}

.model-image {
    height: 450px;
    overflow: hidden;
    position: relative;
    border-radius: 22px 22px 0 0;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-card:hover .model-overlay {
    opacity: 1;
}

.model-overlay .overlay-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

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

.model-social a {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.model-social a:hover {
    background: #d4af37;
    transform: scale(1.1);
}

.model-portfolio {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-portfolio i {
    transition: transform 0.3s ease;
}

.model-portfolio:hover i {
    transform: translateX(5px);
}

.model-info {
    padding: 22px 18px;
}

.model-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.model-details {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.model-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 15px;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.tag.new-face {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.services .section-header h2 {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.service-features span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Casting Section */
.casting {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}
.casting-bg-statue {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 45vw;
    height: auto;
    opacity: 0.4;
    filter: drop-shadow(0 8px 32px #d4af37cc);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s;
}
@media (max-width: 900px) {
    .casting-bg-statue {
        width: 140px;
        max-width: 50vw;
    }
}

.casting-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
.casting-info {
    flex: 1 1 0;
    display: block;
    padding-top: 0;
    min-height: unset;
    position: relative;
}
.casting-statue {
    margin-bottom: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.casting-statue img {
    max-width: 240px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(212,175,55,0.18));
    opacity: 0.96;
    z-index: 2;
}
.casting-statue::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 180px;
    height: 60px;
    background: radial-gradient(circle, #d4af37 0%, #7c3aed 60%, transparent 100%);
    opacity: 0.22;
    filter: blur(18px);
    z-index: 1;
}
@media (max-width: 900px) {
    .casting-content {
        flex-direction: column;
        gap: 30px;
    }
    .casting-info {
        min-height: unset;
        align-items: center;
    }
    .casting-statue img {
        max-width: 160px;
    }
    .casting-statue::after {
        width: 100px;
        height: 32px;
    }
} 

/* Form Styles */
.casting-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 36px 24px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #d4af37;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Photo Upload */
.photo-upload-container {
    margin-top: 20px;
}

.upload-area {
    border: 3px dashed rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 30px;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

.upload-content i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.upload-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.upload-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.upload-hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.uploaded-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.photo-item:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.photo-placeholder {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.photo-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.photo-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

.photo-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.photo-item .remove-photo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.photo-item .remove-photo:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    background: #000;
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-details h4 {
    color: #d4af37;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

.social-links {
    text-align: center;
}

.social-links h4 {
    color: #d4af37;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 0 24px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.footer-column h4 {
    color: #d4af37;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-column a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

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

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

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        padding-top: 100px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .hero-text {
        text-align: center;
    }
    .hero-stats {
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
        margin-bottom: 3rem;
        gap: 2rem;
    }
    .stat-item {
        text-align: center;
        min-width: 220px;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }
    .stat-item:not(:first-child) {
        margin-left: 0;
    }

    .about-content,
    .casting-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .uploaded-photos {
        grid-template-columns: 1fr;
    }

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

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .casting-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
        margin: 0;
        font-size: 1rem;
    }
    .container {
        padding: 0 10px;
        max-width: 100vw;
    }
    .loading-screen {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        width: 100vw;
        padding: 0;
        margin: 0;
    }
    .loading-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        width: 100vw;
        text-align: center;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }
    .loading-logo {
        margin-bottom: 1.2rem;
        width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .progress-bar {
        width: 90vw;
        max-width: 320px;
        height: 10px;
        border-radius: 8px;
        margin: 0 auto 10px auto;
    }
    .progress-text {
        font-size: 1.1rem;
        margin-top: 0.5rem;
        text-align: center;
        width: 100vw;
    }
    .section-header h2 {
        font-size: 2.1rem;
    }
    .models-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 0 0 20px 0;
    }
    .model-card {
        border-radius: 18px;
        margin-bottom: 0;
        box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    }
    .model-image {
        height: 320px;
        border-radius: 18px 18px 0 0;
        overflow: hidden;
    }
    .model-image img {
        height: 100%;
        object-fit: cover;
        border-radius: 18px 18px 0 0;
    }
    .model-info {
        padding: 18px 10px;
    }
    .model-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    .model-details {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .model-tags {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .tag {
        font-size: 0.8rem;
        padding: 5px 12px;
        border-radius: 14px;
    }
    .about-content, .casting-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 0 0 0;
    }
    .about-image, .casting-statue {
        margin: 0 auto;
        width: 100%;
        max-width: 340px;
    }
    .image-container img, .casting-statue img {
        width: 100%;
        height: auto;
        border-radius: 18px;
    }
    .benefits-list {
        gap: 1rem;
    }
    .benefit-icon {
        font-size: 1.3rem;
    }
    .casting-premium-benefits {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        border-radius: 16px;
    }
    .hero-content, .about-content, .casting-content {
        padding: 0 0 0 0;
        max-width: 100vw;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
        margin-top: 1.2rem;
    }
    .btn {
        font-size: 1rem;
        padding: 15px 0;
        width: 100%;
        border-radius: 30px;
    }
    .stat-item {
        min-width: 120px;
        max-width: 100%;
        padding: 1rem 0.5rem;
        border-radius: 14px;
    }
    .footer-content {
        gap: 24px;
        padding: 0 10px;
    }
    .footer-logo h3 {
        font-size: 1.2rem;
    }
    .footer-links {
        gap: 1.2rem;
    }
    .footer-column h4 {
        font-size: 1rem;
    }
    .footer-bottom {
        font-size: 0.9rem;
        padding-top: 18px;
    }
    .header {
        width: 100vw;
        min-width: 100vw;
        overflow-x: hidden;
    }
    .navbar {
        width: 100vw;
        min-width: 100vw;
        padding: 1rem 0.2rem;
    }
    .nav-container {
        width: 100vw;
        min-width: 100vw;
        padding: 0 4px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    .nav-menu {
        width: 100vw;
        min-width: 100vw;
        display: flex;
        flex-wrap: wrap;
        gap: 0.7rem;
        justify-content: space-between;
        font-size: 0.98rem;
        overflow-x: auto;
    }
    .nav-menu li {
        flex: 1 1 auto;
        min-width: max-content;
        text-align: center;
    }
    .nav-menu a {
        font-size: 1rem;
        padding: 0.5rem 0.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 4px;
    }
    .hero {
        padding-top: 50px;
        min-height: 60vh;
    }
    .hero-title {
        font-size: 1.2rem;
    }
    .section-header h2 {
        font-size: 1.3rem;
    }
    .btn {
        font-size: 0.95rem;
        padding: 12px 0;
    }
    .model-info {
        padding: 10px 4px;
    }
    .model-tags {
        gap: 0.3rem;
    }
    .tag {
        font-size: 0.7rem;
        padding: 3px 8px;
        border-radius: 10px;
    }
}

/* Portfolio Modal Styles */
.portfolio-modal {
    display: flex;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.portfolio-modal.active {
    opacity: 1;
    pointer-events: all;
}
.portfolio-modal-content {
    background: #181818;
    border-radius: 24px;
    padding: 40px 30px 30px 30px;
    max-width: 500px;
    width: 90vw;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
    color: #fff;
    position: relative;
    animation: fadeInUp 0.4s;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #222;
}
.portfolio-modal-content::-webkit-scrollbar {
    width: 8px;
    background: #222;
    border-radius: 8px;
}
.portfolio-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4af37 60%, #f4d03f 100%);
    border-radius: 8px;
}
.portfolio-modal-content::-webkit-scrollbar-thumb:hover {
    background: #bfa13a;
}
body.modal-open {
    overflow: hidden;
}
.portfolio-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2rem;
    color: #d4af37;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2;
}
.portfolio-close:hover {
    color: #fff;
}
#portfolioContent img {
    margin-bottom: 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
#portfolioContent h2 {
    color: #d4af37;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    text-align: left;
}
#portfolioContent p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #fff;
}
@media (max-width: 600px) {
    .portfolio-modal-content {
        padding: 20px 8px 18px 8px;
        max-width: 98vw;
    }
    #portfolioContent h2 {
        font-size: 1.1rem;
    }
    #portfolioContent p {
        font-size: 1rem;
    }
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
    width: 10px;
    background: #181818;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4af37 60%, #f4d03f 100%);
    border-radius: 8px;
}
html::-webkit-scrollbar-thumb:hover, body::-webkit-scrollbar-thumb:hover {
    background: #bfa13a;
}

.model-card .model-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    background: none;
    padding: 0;
    transition: transform 0.5s ease;
}

.decorative-statue {
    position: absolute;
    right: 2vw;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    max-width: 35vw;
    opacity: 0.18;
    filter: blur(0.5px) grayscale(0.2) drop-shadow(0 8px 32px #0008);
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 1100px) {
    .decorative-statue {
        width: 180px;
        max-width: 40vw;
        right: 0;
    }
}
@media (max-width: 700px) {
    .decorative-statue {
        display: none;
    }
}
.services .container {
    position: relative;
} 

/* --- Вертикальное центрирование секции кастинга --- */
.casting-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
.casting-info {
    flex: 1 1 0;
    display: block;
    padding-top: 0;
    min-height: unset;
    position: relative;
}
.casting-statue {
    margin-bottom: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.casting-statue img {
    max-width: 240px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(212,175,55,0.18));
    opacity: 0.96;
    z-index: 2;
}
.casting-statue::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 180px;
    height: 60px;
    background: radial-gradient(circle, #d4af37 0%, #7c3aed 60%, transparent 100%);
    opacity: 0.22;
    filter: blur(18px);
    z-index: 1;
}
@media (max-width: 900px) {
    .casting-content {
        flex-direction: column;
        gap: 30px;
    }
    .casting-info {
        min-height: unset;
        align-items: center;
    }
    .casting-statue img {
        max-width: 160px;
    }
    .casting-statue::after {
        width: 100px;
        height: 32px;
    }
} 

.casting-title-gradient {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(90deg, #d4af37 20%, #7c3aed 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-align: left;
    animation: fadeInUp 1s cubic-bezier(.77,0,.18,1) 0.1s both;
}
.casting-subtitle {
    font-size: 1.15rem;
    color: #e6e6e6;
    margin-bottom: 22px;
    line-height: 1.6;
    text-align: left;
    max-width: 520px;
    animation: fadeInUp 1s cubic-bezier(.77,0,.18,1) 0.2s both;
}
.casting-req-block {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(212,175,55,0.18);
    border-radius: 18px;
    padding: 18px 22px 12px 22px;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px rgba(212,175,55,0.06);
    animation: fadeInUp 1s cubic-bezier(.77,0,.18,1) 0.3s both;
}
.casting-req-title {
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.08rem;
    letter-spacing: 1px;
}
.casting-req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.casting-req-list li {
    font-size: 1.05rem;
    color: #f5f5f5;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.req-icon {
    color: #d4af37;
    font-size: 1.1em;
    margin-right: 4px;
    display: inline-block;
    min-width: 1.2em;
    text-align: center;
}
.casting-stats-premium {
    display: flex;
    gap: 36px;
    margin-bottom: 18px;
    margin-top: 10px;
}
.casting-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.casting-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2px;
    letter-spacing: 1px;
    animation: fadeInUp 1s cubic-bezier(.77,0,.18,1) 0.4s both;
}
.casting-stat-label {
    font-size: 1rem;
    color: #bdbdbd;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.casting-decor-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 40%, #7c3aed 100%);
    border-radius: 2px;
    margin: 18px 0 0 0;
    animation: fadeInUp 1s cubic-bezier(.77,0,.18,1) 0.5s both;
}
@media (max-width: 900px) {
    .casting-title-gradient {
        font-size: 1.3rem;
    }
    .casting-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    .casting-req-block {
        padding: 12px 8px 8px 12px;
    }
    .casting-stats-premium {
        gap: 16px;
    }
    .casting-stat-number {
        font-size: 1.3rem;
    }
} 

.casting-premium-benefits {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 2.2rem 2rem 2rem 2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 22px;
    border: 1px solid rgba(212,175,55,0.13);
    box-shadow: 0 8px 32px rgba(212,175,55,0.07);
    position: relative;
    z-index: 1;
}
.benefits-title {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.benefit-icon {
    font-size: 1.2rem;
    margin-right: 0.7rem;
    color: #d4af37;
}
.casting-quote {
    margin-top: 1.2rem;
    font-style: italic;
    color: #bfae7b;
    font-size: 1.08rem;
    border-left: 3px solid #d4af37;
    padding-left: 1rem;
    opacity: 0.85;
}
.casting-gradient-effect {
    position: absolute;
    left: -60px;
    top: 40px;
    width: 340px;
    height: 340px;
    z-index: 0;
    background: radial-gradient(circle at 60% 40%, rgba(212,175,55,0.18) 0%, rgba(120,0,255,0.09) 60%, transparent 100%);
    filter: blur(12px);
    pointer-events: none;
    opacity: 0.7;
}
@media (max-width: 900px) {
    .casting-gradient-effect {
        display: none;
    }
    .casting-premium-benefits {
        padding: 1.2rem 1rem 1rem 1rem;
    }
} 

@media (max-width: 900px) {
  .desktop-menu {
    display: none !important;
  }
  .hamburger {
    display: none !important;
  }
  .hamburger span {
    width: 30px;
    height: 4px;
    background: #d4af37;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
    display: block;
  }
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 82vw;
    max-width: 340px;
    height: 100vh;
    background: #181818;
    box-shadow: -8px 0 32px rgba(0,0,0,0.25);
    z-index: 12000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 32px 0;
    transition: right 0.35s cubic-bezier(.77,0,.18,1);
    font-family: 'Playfair Display', serif;
  }
  .mobile-nav.open {
    right: 0;
  }
  .mobile-nav-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px 12px 28px;
    border-bottom: 1px solid rgba(212,175,55,0.13);
  }
  .mobile-nav-title {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .mobile-nav-close {
    font-size: 2.2rem;
    color: #fff;
    cursor: pointer;
    margin-left: 18px;
    transition: color 0.2s;
  }
  .mobile-nav-close:hover {
    color: #d4af37;
  }
  .mobile-nav-list {
    display: flex !important;
    flex-direction: column;
    gap: 2rem;
    opacity: 1 !important;
    background: none;
    padding: 0 28px;
    margin: 32px 0 0 0;
    list-style: none;
    height: auto !important;
    overflow: visible !important;
    transition: opacity 0.3s;
  }
  .mobile-nav.open .mobile-nav-list {
    display: flex !important;
    opacity: 1 !important;
  }
  .mobile-nav-list a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    width: 100%;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(212,175,55,0.08);
    transition: color 0.2s, background 0.2s;
    background: none;
    border-radius: 0;
  }
  .mobile-nav-list a:hover {
    color: #d4af37 !important;
    background: rgba(212,175,55,0.07);
  }
  .mobile-nav-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2.5rem;
    padding: 0 28px;
  }
  .mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    padding: 16px 0;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin: 0 auto;
    letter-spacing: 1px;
  }
  .mobile-nav-btn.whatsapp {
    background: linear-gradient(90deg, #25d366 60%, #128c7e 100%);
    color: #fff;
  }
  .mobile-nav-btn.telegram {
    background: linear-gradient(90deg, #0088cc 60%, #005f8c 100%);
    color: #fff;
  }
  .mobile-nav-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
  }
  .mobile-nav-overlay {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.45);
    z-index: 11999;
    opacity: 1;
    transition: opacity 0.3s;
    display: none;
  }
  .mobile-nav.open ~ .mobile-nav-overlay {
    display: block;
    opacity: 1;
  }
}
@media (min-width: 901px) {
  .mobile-nav, .hamburger, .mobile-nav-overlay {
    display: none !important;
  }
} 

@media (max-width: 900px) {
  header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1000;
    width: 100vw;
  }
  body {
    padding-top: 70px !important;
  }
  .container, section, .main, main {
    padding-top: 0 !important;
  }
} 

@media (max-width: 768px) {
  .hero {
    padding-top: 120px !important;
  }
  .hero-title {
    margin-top: 24px !important;
    font-size: 2rem;
    text-align: center;
  }
  .hero-buttons {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }
  .hero-stats {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
  }
  .stat-item {
    margin: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 1rem 0.5rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  .experience-block {
    margin-top: 16px !important;
    margin-bottom: 8px !important;
  }
  section[id] {
    scroll-margin-top: 120px !important;
  }
} 

/* --- CUSTOM LUXURY CURSOR --- */
.lux-cursor-inner {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: background 0.18s cubic-bezier(.77,0,.18,1), opacity 0.18s, transform 0.12s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 0 8px 2px rgba(255,255,255,0.13);
  mix-blend-mode: difference;
}
.lux-cursor-outer {
  position: fixed;
  top: 0; left: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: border 0.18s, box-shadow 0.18s, background 0.18s, transform 0.12s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 0 16px 2px rgba(255,255,255,0.08);
  mix-blend-mode: difference;
  background: transparent;
}
.lux-cursor-hover .lux-cursor-inner {
  opacity: 0;
}
.lux-cursor-hover .lux-cursor-outer {
  border: 1.5px solid transparent;
  background: linear-gradient(to right, #d4af37, #f0e6d2);
  box-shadow: 0 0 24px 4px rgba(212,175,55,0.18);
  transform: translate(-50%, -50%) scale(1.2);
  animation: lux-cursor-pulse 0.32s cubic-bezier(.77,0,.18,1);
}
@keyframes lux-cursor-pulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.22); }
  100% { transform: translate(-50%, -50%) scale(1.2); }
}
/* --- END CUSTOM LUXURY CURSOR --- */ 

@media (max-width: 768px) {
  .hero {
    padding-top: 130px !important;
    margin-bottom: 70px !important;
  }
  .stat-item {
    margin-bottom: 70px !important;
  }
  section[id] {
    scroll-margin-top: 130px;
  }
}

/* --- Чистый мобильный hero-блок, исправляющий все ошибки --- */
@media (max-width: 768px) {
  .hero {
    padding-top: 110px !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 8px !important;
    gap: 0 !important;
  }
  .hero-title {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    font-size: 2.1rem !important;
    text-align: center !important;
    line-height: 1.1 !important;
  }
  .hero-subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 18px !important;
    text-align: center !important;
  }
  .hero-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    margin: 0 0 18px 0 !important;
    width: 100%;
    align-items: center !important;
  }
  .btn {
    width: 100% !important;
    font-size: 1rem !important;
    padding: 15px 0 !important;
    border-radius: 30px !important;
    justify-content: center !important;
  }
  .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100%;
    margin: 0 !important;
  }
  .stat-item {
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    padding: 1rem 0.5rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.13);
  }
  .stat-number {
    font-size: 2rem !important;
    margin-bottom: 0.2rem !important;
  }
  .stat-label {
    font-size: 1rem !important;
  }
  .experience-block {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  section[id] {
    scroll-margin-top: 110px !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 80px !important;
    min-height: unset;
    display: block;
  }
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 8px !important;
    gap: 0 !important;
  }
  .hero-title {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
    font-size: 2.1rem !important;
    text-align: center !important;
    line-height: 1.1 !important;
  }
  .hero-subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 14px !important;
    text-align: center !important;
  }
  .hero-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    margin: 0 0 14px 0 !important;
    width: 100%;
    align-items: center !important;
  }
  .btn {
    width: 100% !important;
    font-size: 1rem !important;
    padding: 15px 0 !important;
    border-radius: 30px !important;
    justify-content: center !important;
  }
  .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100%;
    margin: 0 !important;
  }
  .stat-item {
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    padding: 1rem 0.5rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.13);
    color: #fff;
    position: relative;
    z-index: 2;
  }
  .stat-number {
    font-size: 2rem !important;
    margin-bottom: 0.2rem !important;
    color: #d4af37 !important;
  }
  .stat-label {
    font-size: 1rem !important;
    color: #fff !important;
  }
  .experience-block {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1.5px solid #d4af37 !important;
    color: #fff !important;
    z-index: 2;
  }
  section[id] {
    scroll-margin-top: 80px !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 48px !important;
    min-height: unset !important;
    height: auto !important;
    display: block !important;
    margin-bottom: 0 !important;
    background: #000 !important;
  }
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 8px !important;
    gap: 0 !important;
    z-index: 3 !important;
    position: relative !important;
  }
  .hero-title {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    font-size: 2.1rem !important;
    text-align: center !important;
    line-height: 1.1 !important;
  }
  .hero-subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }
  .hero-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    margin: 0 0 12px 0 !important;
    width: 100%;
    align-items: center !important;
  }
  .btn {
    width: 100% !important;
    font-size: 1rem !important;
    padding: 15px 0 !important;
    border-radius: 30px !important;
    justify-content: center !important;
  }
  .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100%;
    margin: 0 !important;
    z-index: 3 !important;
    position: relative !important;
  }
  .stat-item {
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    padding: 1rem 0.5rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
    background: rgba(0,0,0,0.85) !important;
    border-radius: 16px !important;
    border: 1.5px solid #d4af37 !important;
    color: #fff !important;
    position: relative !important;
    z-index: 3 !important;
    overflow: visible !important;
  }
  .stat-number {
    font-size: 2rem !important;
    margin-bottom: 0.2rem !important;
    color: #d4af37 !important;
  }
  .stat-label {
    font-size: 1rem !important;
    color: #fff !important;
  }
  .experience-block {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  section[id] {
    scroll-margin-top: 48px !important;
  }
}
