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

:root {
    --pink: #FF69B4;
    --hot-pink: #FF1493;
    --light-pink: #FFB6C1;
    --pale-pink: #FFF0F5;
    --gold: #FFD700;
    --light-gold: #FFED4A;
    --dark-gold: #B8860B;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #FFFDD0;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    
    --gradient-pink: linear-gradient(135deg, #FF69B4, #FF1493, #DA70D6);
    --gradient-gold: linear-gradient(135deg, #FFD700, #FFED4A, #B8860B);
    --gradient-white: linear-gradient(135deg, #FFFFFF, #FAFAFA, #F5F5F5);
    --gradient-galaxy: linear-gradient(135deg, #FF69B4 0%, #FFD700 50%, #FF1493 100%);
    --gradient-star: radial-gradient(circle, #FFD700 0%, #FF69B4 50%, #FF1493 100%);
    
    --shadow-pink: 0 0 30px rgba(255, 105, 180, 0.6);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.6);
    --shadow-star: 0 0 50px rgba(255, 105, 180, 0.8);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: calc(100vw - 30px);
    }
}

/* Loading Screen */
.container-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
    max-width: 100vw;
    overflow: hidden;
}

.container-loader.hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.star-loader {
    text-align: center;
    animation: starPulse 3s ease-in-out infinite;
    will-change: transform;
}

.star-icon {
    font-size: 4rem;
    color: var(--pink);
    animation: starRotate 3s linear infinite;
    margin-bottom: 1rem;
}

.loading-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: var(--shadow-gold);
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: var(--pink);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(2) { animation-delay: 0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0.32s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.lang-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    background: rgba(255, 105, 180, 0.2);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--gradient-pink);
    transform: scale(1.1);
    box-shadow: var(--shadow-pink);
}

/* Mobile responsivity for language switcher */
@media (max-width: 768px) {
    .language-switcher {
        bottom: 15px;
        right: 15px;
        padding: 8px;
        gap: 8px;
    }
    
    .lang-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 105, 180, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.navigation.scrolled {
    padding: 0.6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(26, 26, 26, 0.97) 100%);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 105, 180, 0.08) 25%, 
        rgba(255, 105, 180, 0.08) 75%, 
        transparent 100%);
    opacity: 0.6;
    animation: navStarGlow 6s ease-in-out infinite alternate;
}

@keyframes navStarGlow {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: var(--shadow-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-star {
    font-size: 2rem;
    color: var(--pink);
    animation: logoStarSpin 8s linear infinite;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 
        0 0 30px var(--gold),
        0 0 60px rgba(255, 215, 0, 0.6);
}

.logo:hover .logo-star {
    animation-duration: 2s;
    color: var(--hot-pink);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 105, 180, 0.1);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.2);
    backdrop-filter: blur(10px);
    padding: 0;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
        margin-left: auto;
    }
    .nav-links {
        display: none !important;
    }
    .nav-content {
        justify-content: space-between;
        width: 100%;
        gap: 1rem;
        padding: 0;
    }
    
    .logo {
        flex-shrink: 0;
    }
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 105, 180, 0.2);
    border-color: rgba(255, 105, 180, 0.5);
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--pink);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.7);
    border-radius: 1px;
    margin: 0;
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--pink);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.7);
    border-radius: 1px;
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.mobile-menu-btn.active .hamburger {
    background: transparent;
    box-shadow: none;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--hot-pink);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.8);
}

.mobile-menu-btn.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--hot-pink);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.8);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    min-width: fit-content;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-pink);
    border-radius: 2px;
    transition: width 0.4s ease;
    box-shadow: var(--shadow-pink);
}

.nav-links a:hover {
    color: var(--pink);
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 105, 180, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 105, 180, 0.2);
}

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

/* Contact Form Button - Special Styling */
.contact-form-btn {
    background: var(--gradient-gold) !important;
    color: var(--black) !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    border: 2px solid transparent !important;
    box-shadow: var(--shadow-gold), 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    animation: goldGlow 2s ease-in-out infinite alternate !important;
}

.contact-form-btn::before {
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent) !important;
}

.contact-form-btn::after {
    background: var(--gold) !important;
    height: 4px !important;
}

.contact-form-btn:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 
        var(--shadow-gold), 
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 215, 0, 0.6) !important;
}

.mobile-menu-link.contact-form-btn {
    background: var(--gradient-gold) !important;
    color: var(--black) !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-gold) !important;
    border: 2px solid var(--gold) !important;
}

.mobile-menu-link.contact-form-btn:hover {
    background: var(--light-gold) !important;
    color: var(--black) !important;
    transform: scale(1.05) !important;
    box-shadow: 
        var(--shadow-gold),
        0 0 20px rgba(255, 215, 0, 0.8) !important;
}

@keyframes goldGlow {
    0% { 
        box-shadow: var(--shadow-gold), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    100% { 
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.4);
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.98) 0%, 
        rgba(26, 26, 26, 0.95) 50%, 
        rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    z-index: 999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    max-width: 100vw;
    padding: 1rem;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 105, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    animation: menuStarShimmer 12s ease-in-out infinite alternate;
}

@keyframes menuStarShimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.mobile-menu-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 90%;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: var(--shadow-gold);
    margin-bottom: 1.5rem;
    animation: logoStarGlow 4s ease-in-out infinite alternate;
}

.mobile-menu-logo .logo-star {
    font-size: 3rem;
    color: var(--pink);
    animation: logoStarSpin 6s linear infinite;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-menu-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--off-white);
    text-decoration: none;
    letter-spacing: 1px;
    padding: 0.8rem 1.2rem;
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 12px;
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.05) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mobile-menu-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 105, 180, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.mobile-menu-links a:hover::before,
.mobile-menu-links a:active::before {
    left: 100%;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:active {
    color: var(--pink);
    border-color: var(--pink);
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.15) 0%, 
        rgba(0, 0, 0, 0.9) 100%);
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
    box-shadow: 
        0 15px 40px rgba(255, 105, 180, 0.2),
        0 0 60px rgba(255, 105, 180, 0.1);
    transform: translateY(-5px) scale(1.02);
}

.mobile-menu-stars {
    position: absolute;
    font-size: 4rem;
    color: var(--pink);
    opacity: 0.1;
    animation: starFloat 12s ease-in-out infinite alternate;
    will-change: transform;
}

.star-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.star-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.star-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.star-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes starFloat {
    0% { transform: translateY(0px) scale(1); opacity: 0.1; }
    100% { transform: translateY(-30px) scale(1.1); opacity: 0.2; }
}

/* Menu Animation Effects */
.mobile-menu-links a {
    transform: translateY(50px);
    opacity: 0;
    animation: none;
}

.mobile-menu-overlay.active .mobile-menu-links a {
    animation: slideInUp 0.6s ease-out forwards;
}

.mobile-menu-overlay.active .mobile-menu-links a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(6) { animation-delay: 0.6s; }

.mobile-menu-logo {
    transform: scale(0.8);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-menu-logo {
    animation: scaleIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s forwards;
}

.mobile-menu-cta {
    transform: translateY(30px);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-menu-cta {
    animation: slideInUp 0.6s ease-out 0.7s forwards;
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%),
        radial-gradient(circle at 30% 20%, rgba(255, 105, 180, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, #2a2a2a 100%);
    background-size: cover, auto, auto, cover;
    background-position: center, center, center, center;
    overflow: hidden;
    margin-top: 0;
    padding: 90px 10px 40px 10px;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding: 80px 15px 30px 15px;
        min-height: 100vh;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 60% 40%, rgba(255, 105, 180, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 105, 180, 0.1) 0%, transparent 50%);
    animation: heroStarShimmer 12s ease-in-out infinite alternate;
    z-index: 1;
}

.stars-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #FFD700, transparent),
        radial-gradient(2px 2px at 40px 70px, #FF69B4, transparent),
        radial-gradient(1px 1px at 90px 40px, #FFFFFF, transparent),
        radial-gradient(1px 1px at 130px 80px, #FF1493, transparent),
        radial-gradient(2px 2px at 160px 30px, #FFD700, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starsFloat 30s linear infinite;
    opacity: 0.6;
}

@keyframes heroStarShimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

@keyframes starsFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.floating-star {
    position: absolute;
    font-size: 3rem;
    color: var(--pink);
    opacity: 0.15;
    animation: floatStar 20s ease-in-out infinite;
    will-change: transform;
}

.floating-star.s1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.floating-star.s2 {
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.floating-star.s3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes floatStar {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-30px) scale(1.2) rotate(180deg); opacity: 0.3; }
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
    animation: fadeInUp 2s ease-out;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    min-height: calc(100vh - 120px);
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 25px;
        margin-top: 0;
        min-height: calc(100vh - 100px);
        justify-content: center;
        gap: 1rem;
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
    margin-top: 0;
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.4),
        0 0 90px rgba(255, 215, 0, 0.2);
    letter-spacing: 4px;
    animation: titleStarGlow 4s ease-in-out infinite alternate;
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-title {
        white-space: normal;
        word-break: break-word;
        text-align: center;
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        letter-spacing: 8px;
        margin-top: 0;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
}

@keyframes titleStarGlow {
    0% { 
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 215, 0, 0.4);
    }
    100% { 
        text-shadow: 
            0 0 50px rgba(255, 215, 0, 1),
            0 0 80px rgba(255, 215, 0, 0.6),
            0 0 120px rgba(255, 215, 0, 0.3);
    }
}

.star-ornament {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    gap: 0.1rem;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--light-pink);
    margin: 0;
    margin-bottom: -3rem;
    letter-spacing: 3px;
    max-width: 600px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(255, 182, 193, 0.4);
    z-index: 3;
    position: relative;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
        letter-spacing: 2px;
        max-width: 90%;
        margin-bottom: -2.5rem;
        margin-top: 2rem;
    }
}

.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .ornament-divider {
        gap: 1rem;
        margin: 1.2rem 0;
    }
}

.ornament-left, .ornament-right {
    font-size: 2.2rem;
    color: var(--pink);
    animation: starPulse 4s ease-in-out infinite alternate;
    will-change: transform;
}

@media (max-width: 768px) {
    .ornament-left, .ornament-right {
        font-size: 1.8rem;
    }
}

.ornament-right {
    animation-delay: 1.5s;
}

.pink-divider {
    width: 27rem !important;
    height: 4px;
    background: var(--gradient-pink);
    margin: 0;
    position: relative;
    border-radius: 2px;
    box-shadow: var(--shadow-pink);
}

@media (max-width: 768px) {
    .pink-divider {
        width: 24rem !important;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .pink-divider {
        width: 19rem !important;
        height: 2px;
    }
}

.hero-buttons {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-galaxy);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(255, 105, 180, 0.3),
        0 0 50px rgba(255, 105, 180, 0.2);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

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

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(255, 105, 180, 0.4),
        0 0 80px rgba(255, 105, 180, 0.3);
    background: linear-gradient(135deg, #FF1493 0%, #FFD700 50%, #FF69B4 100%);
}

.cta-button:hover::before {
    left: 100%;
}

.star-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--gradient-star);
    border-radius: 50%;
    opacity: 0.1;
    animation: starPulseGlow 8s ease-in-out infinite;
}

.star-left {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.star-right {
    bottom: 20%;
    right: 5%;
    animation-delay: 3s;
}

.star-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--pink), transparent);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes starPulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Galaxy Section */
.galaxy {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        var(--black) 0%, 
        var(--dark-gray) 50%, 
        var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.galaxy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    animation: galaxyShimmer 15s ease-in-out infinite alternate;
}

@keyframes galaxyShimmer {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: var(--shadow-gold);
    animation: titleStarGlow 6s ease-in-out infinite alternate;
}

.galaxy-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .galaxy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.galaxy-text {
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.1) 0%, 
        rgba(0, 0, 0, 0.5) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 105, 180, 0.2);
    backdrop-filter: blur(10px);
}

.manifesto {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--light-pink);
    text-align: center;
}

.manifesto span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.manifesto strong {
    color: var(--pink);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
}

.galaxy-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.5) 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: var(--shadow-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--off-white);
    font-weight: 500;
}

.galaxy-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.galaxy-star-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(255, 105, 180, 0.3),
        0 0 80px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.galaxy-star-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 30px 60px rgba(255, 105, 180, 0.4),
        0 0 120px rgba(255, 105, 180, 0.3);
}

/* Star Circle Section */
.star-circle {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.05) 0%, transparent 60%),
        linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
}

.star-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.star-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--pink);
    margin-bottom: 1rem;
    text-shadow: var(--shadow-pink);
}

.star-subtitle {
    font-size: 1.2rem;
    color: var(--light-pink);
    margin-bottom: 3rem;
    font-weight: 300;
}

.star-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .star-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.star-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.star-btn:hover {
    transform: translateY(-10px);
    border-color: var(--pink);
    box-shadow: 
        0 20px 50px rgba(255, 105, 180, 0.3),
        0 0 80px rgba(255, 105, 180, 0.2);
}

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

.star-btn .btn-icon {
    font-size: 3rem;
    min-width: 60px;
}

.onlyfans-star .btn-icon {
    color: var(--gold);
}

.webcam-star .btn-icon {
    color: var(--pink);
}

.btn-content {
    flex: 1;
    text-align: left;
}

.btn-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.btn-content p {
    color: var(--light-pink);
    font-size: 1rem;
    margin: 0;
}

.btn-arrow {
    font-size: 2rem;
    color: var(--pink);
    transition: all 0.3s ease;
}

.star-btn:hover .btn-arrow {
    transform: translateX(10px);
    color: var(--hot-pink);
}

/* Challenges Section */
.challenges {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        var(--black) 0%, 
        var(--dark-gray) 50%, 
        var(--black) 100%);
    position: relative;
}

.challenges-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .challenges-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.challenge-image-container {
    position: relative;
}

.challenge-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(255, 105, 180, 0.3),
        0 0 80px rgba(255, 105, 180, 0.2);
}

.image-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.2) 0%, 
        transparent 50%, 
        rgba(255, 215, 0, 0.1) 100%);
    border-radius: 20px;
    animation: imageGlow 8s ease-in-out infinite alternate;
}

@keyframes imageGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.floating-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-bubble {
    background: rgba(255, 105, 180, 0.9);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

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

.challenge-card {
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.05) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.challenge-card:hover {
    transform: translateY(-10px);
    border-color: var(--pink);
    box-shadow: 
        0 20px 40px rgba(255, 105, 180, 0.2),
        0 0 60px rgba(255, 105, 180, 0.1);
}

.challenge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.challenge-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.challenge-card p {
    color: var(--off-white);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.challenge-ornament {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--pink);
    opacity: 0.3;
}

.solution {
    border-color: var(--gold);
}

.solution h3 {
    color: var(--gold);
}

.solution .challenge-ornament {
    color: var(--gold);
}

/* Seven Stars System */
.seven-stars {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.service-card {
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.1) 0%, 
        rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--pink);
    box-shadow: 
        0 25px 60px rgba(255, 105, 180, 0.3),
        0 0 100px rgba(255, 105, 180, 0.2);
}

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

.card-ornament {
    position: absolute;
    font-size: 2rem;
    color: var(--pink);
    opacity: 0.5;
    animation: ornamentFloat 6s ease-in-out infinite alternate;
}

.card-ornament.top {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.card-ornament.bottom {
    bottom: 20px;
    right: 20px;
    animation-delay: 3s;
}

@keyframes ornamentFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(10deg); }
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-shadow: var(--shadow-gold);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.service-card p {
    color: var(--light-pink);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        var(--black) 0%, 
        var(--dark-gray) 100%);
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-side.regular {
        order: 1;
    }
    
    .vs-divider {
        order: 2;
    }
    
    .comparison-side.star {
        order: 3;
    }
}

.comparison-side {
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.08) 0%, 
        rgba(0, 0, 0, 0.85) 100%);
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    will-change: transform;
}

.comparison-side:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 30px rgba(255, 105, 180, 0.2),
        0 0 40px rgba(255, 105, 180, 0.1);
}

.regular {
    border-color: rgba(255, 105, 180, 0.3);
}

.star {
    border-color: var(--gold);
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.regular .comparison-icon {
    color: var(--pink);
}

.star .comparison-icon {
    color: var(--gold);
    animation: starSpin 4s linear infinite;
}

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

.comparison-content ul {
    list-style: none;
    padding: 0;
}

.comparison-content li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    color: var(--off-white);
    font-size: 0.95rem;
    position: relative;
    padding-left: 2rem;
}

.comparison-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-size: 1.5rem;
}

.star .comparison-content li::before {
    content: '⭐';
    color: var(--gold);
    font-size: 1rem;
}

.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-galaxy);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: var(--shadow-pink);
}

.vs-symbol {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.vs-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 1.2rem;
}

/* About Us Section */
.about-us {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
    overflow-x: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 50px 0;
    }
    
    .about-content {
        gap: 1.8rem;
    }
    
    .about-text {
        padding: 1.8rem;
        border-radius: 18px;
        margin: 0;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 1.3rem;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 35px 0;
    }
    
    .about-content {
        gap: 1.3rem;
    }
    
    .about-text {
        padding: 1.3rem;
        border-radius: 15px;
        margin: 0;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        padding: 0 0.5rem;
        line-height: 1.3;
    }
}

/* New breakpoint for very small screens */
@media (max-width: 360px) {
    .about-us {
        padding: 25px 0;
    }
    
    .about-content {
        gap: 1rem;
    }
    
    .about-text {
        padding: 1rem;
        border-radius: 12px;
        margin: 0;
    }
    
    .section-title {
        font-size: clamp(1.2rem, 7vw, 1.5rem);
        padding: 0 0.3rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
}

.about-text {
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 105, 180, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.about-highlight {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 105, 180, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.about-highlight h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.about-highlight p {
    color: var(--light-pink);
    font-size: 1rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.about-info p {
    color: var(--off-white);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Mobile Typography Optimizations */
@media (max-width: 768px) {
    .about-highlight h3 {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .about-highlight p {
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
        line-height: 1.6;
    }
    
    .about-info p {
        font-size: clamp(0.8rem, 3.2vw, 0.9rem);
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-highlight {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .about-highlight h3 {
        font-size: clamp(1.1rem, 4.5vw, 1.3rem);
        margin-bottom: 0.7rem;
    }
    
    .about-highlight p {
        font-size: clamp(0.8rem, 3.8vw, 0.9rem);
    }
    
    .about-info p {
        font-size: clamp(0.75rem, 3.5vw, 0.85rem);
        margin-bottom: 1rem;
    }
}

@media (max-width: 360px) {
    .about-highlight {
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }
    
    .about-highlight h3 {
        font-size: clamp(1rem, 5vw, 1.2rem);
        margin-bottom: 0.6rem;
        padding: 0 0.2rem;
    }
    
    .about-highlight p {
        font-size: clamp(0.75rem, 4vw, 0.85rem);
        padding: 0 0.2rem;
    }
    
    .about-info p {
        font-size: clamp(0.7rem, 3.8vw, 0.8rem);
        margin-bottom: 0.8rem;
        padding: 0 0.2rem;
    }
}

.progress-stages {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.stages-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: var(--shadow-gold);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stages-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.stage-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.stage-item:hover {
    transform: translateX(10px);
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.progress-bar {
    position: relative;
    width: 120px;
    height: 8px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 4px;
    transition: width 1s ease;
    animation: progressGlow 4s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.8); }
}

.progress-percentage {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
}

.stage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}

.icon-symbol {
    font-size: 1.5rem;
    color: var(--black);
}

.stage-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.stage-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.stage-info p {
    color: var(--off-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.5;
}

/* Mobile Stage Optimizations */
@media (max-width: 768px) {
    .progress-stages {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .stages-title {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
        margin-bottom: 1.5rem;
    }
    
    .stages-container {
        gap: 1.5rem;
    }
    
    .stage-item {
        gap: 1.2rem;
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .stage-item:hover {
        transform: translateX(5px);
    }
    
    .progress-bar {
        width: 80px;
        height: 6px;
    }
    
    .progress-percentage {
        font-size: 0.7rem;
        top: -20px;
    }
    
    .stage-icon {
        width: 40px;
        height: 40px;
    }
    
    .icon-symbol {
        font-size: 1.2rem;
    }
    
    .stage-info h4 {
        font-size: clamp(1rem, 3.5vw, 1.1rem);
        margin-bottom: 0.4rem;
    }
    
    .stage-info p {
        font-size: clamp(0.8rem, 3vw, 0.85rem);
    }
}

@media (max-width: 480px) {
    .progress-stages {
        padding: 1.5rem;
        border-radius: 18px;
    }
    
    .stages-title {
        font-size: clamp(1.1rem, 4.5vw, 1.3rem);
        margin-bottom: 1.3rem;
    }
    
    .stages-container {
        gap: 1.2rem;
    }
    
    .stage-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stage-item:hover {
        transform: translateY(-3px);
    }
    
    .stage-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .progress-bar {
        width: 60px;
        height: 5px;
        margin-top: 0.8rem;
    }
    
    .progress-percentage {
        font-size: 0.65rem;
        top: -18px;
    }
    
    .stage-icon {
        width: 35px;
        height: 35px;
    }
    
    .icon-symbol {
        font-size: 1rem;
    }
    
    .stage-info h4 {
        font-size: clamp(0.95rem, 4vw, 1.05rem);
        margin-bottom: 0.3rem;
    }
    
    .stage-info p {
        font-size: clamp(0.75rem, 3.2vw, 0.8rem);
        line-height: 1.4;
    }
}

@media (max-width: 360px) {
    .progress-stages {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .stages-title {
        font-size: clamp(1rem, 5vw, 1.2rem);
        margin-bottom: 1rem;
    }
    
    .stages-container {
        gap: 1rem;
    }
    
    .stage-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .stage-header {
        gap: 0.8rem;
    }
    
    .progress-bar {
        width: 50px;
        height: 4px;
        margin-top: 0.6rem;
    }
    
    .progress-percentage {
        font-size: 0.6rem;
        top: -16px;
    }
    
    .stage-icon {
        width: 30px;
        height: 30px;
    }
    
    .icon-symbol {
        font-size: 0.9rem;
    }
    
    .stage-info h4 {
        font-size: clamp(0.9rem, 4.5vw, 1rem);
        margin-bottom: 0.2rem;
    }
    
    .stage-info p {
        font-size: clamp(0.7rem, 3.5vw, 0.75rem);
        line-height: 1.3;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    position: relative;
    text-align: center;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--pink);
    margin-bottom: 1rem;
    text-shadow: var(--shadow-pink);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--light-pink);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-options.single-email {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 4rem auto;
}

.contact-btn.single {
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.contact-btn:hover {
    transform: translateY(-10px);
    border-color: var(--pink);
    box-shadow: 
        0 20px 50px rgba(255, 105, 180, 0.3),
        0 0 80px rgba(255, 105, 180, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    min-width: 60px;
}

.email .contact-icon {
    color: var(--gold);
}

.telegram .contact-icon {
    color: var(--pink);
}

.instagram .contact-icon {
    color: var(--hot-pink);
}

.contact-info {
    min-width: 0;
    flex: 1;
}

.contact-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: var(--light-pink);
    font-size: 0.9rem;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Contact Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-options.single-email {
        max-width: 90%;
        margin: 0 auto 3rem auto;
    }
    
    .contact-btn {
        padding: 1.5rem;
        gap: 0.8rem;
    }
    
    .contact-btn.single {
        max-width: 100%;
    }
    
    .contact-icon {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .contact-info h4 {
        font-size: clamp(1rem, 4vw, 1.1rem);
        margin-bottom: 0.3rem;
    }
    
    .contact-info p {
        font-size: clamp(0.75rem, 3.5vw, 0.85rem);
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .contact-options.single-email {
        max-width: 95%;
        margin: 0 auto 2.5rem auto;
        padding: 0 10px;
    }
    
    .contact-btn {
        padding: 1.2rem;
        gap: 0.6rem;
        border-radius: 20px;
    }
    
    .contact-icon {
        font-size: 1.8rem;
        min-width: 45px;
    }
    
    .contact-info h4 {
        font-size: clamp(0.9rem, 4.5vw, 1rem);
        margin-bottom: 0.2rem;
    }
    
    .contact-info p {
        font-size: clamp(0.7rem, 3.8vw, 0.8rem);
        line-height: 1.3;
        letter-spacing: -0.2px;
    }
}

@media (max-width: 360px) {
    .contact-options.single-email {
        max-width: 98%;
        padding: 0 5px;
    }
    
    .contact-btn {
        padding: 1rem;
        gap: 0.5rem;
        border-radius: 18px;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .contact-info h4 {
        font-size: clamp(0.85rem, 5vw, 0.95rem);
    }
    
    .contact-info p {
        font-size: clamp(0.65rem, 4.2vw, 0.75rem);
        line-height: 1.2;
        letter-spacing: -0.3px;
    }
}

.star-cta {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-galaxy);
    border-radius: 30px;
    margin-top: 2rem;
}

.star-icon-big {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 1rem;
    animation: starPulse 3s ease-in-out infinite;
}

.star-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-cta-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--white), var(--off-white));
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 2px solid rgba(255, 105, 180, 0.2);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: var(--shadow-gold);
    margin-bottom: 1rem;
}

.footer-logo .logo-star {
    font-size: 2rem;
    color: var(--pink);
    animation: logoStarSpin 8s linear infinite;
}

.footer-text {
    color: var(--light-pink);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-text p {
    margin-bottom: 0.5rem;
}

/* Application Form */
.application-form {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-galaxy);
    border-radius: 30px;
    margin-top: 2rem;
}

.application-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input,
.form-row select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-row input::placeholder,
.form-row select option,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-row input:focus,
.form-row select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--white), var(--off-white));
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
}

.submit-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.submit-btn .loading {
    display: none;
}

.submit-btn.loading .loading {
    display: inline;
}

.submit-btn.loading span:first-child {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .application-form {
        padding: 2rem 1rem;
    }
    
    .application-form h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .star-buttons {
        grid-template-columns: 1fr;
    }
    
    .star-btn {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .btn-content {
        text-align: center;
    }
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-moz-selection {
    background: var(--pink);
    color: var(--white);
}

/* Webcam Elite System Section */
.webcam-elite {
    padding: 180px 0 160px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 10, 26, 0.9) 100%);
}

.elite-grid {
    margin-bottom: 6rem;
}

/* Success Stories Section */
.success-stories {
    padding: 180px 0 160px 0;
}

/* Streaming Examples Section - Complete Luxury Redesign */
.streaming-examples {
    padding: 200px 0 160px 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 105, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.streaming-examples::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 105, 180, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    animation: luxuryShimmer 15s ease-in-out infinite alternate;
}

@keyframes luxuryShimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.streaming-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.streaming-card {
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.1) 0%, 
        rgba(0, 0, 0, 0.9) 50%,
        rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 35px rgba(255, 105, 180, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.4);
}

.streaming-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 340deg,
        rgba(255, 105, 180, 0.3) 360deg
    );
    animation: luxuryRotate 8s linear infinite;
    z-index: -1;
}

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

.streaming-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 25px 50px rgba(255, 105, 180, 0.3),
        0 10px 25px rgba(255, 215, 0, 0.2),
        0 0 80px rgba(255, 105, 180, 0.15);
}

.image-container {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.streaming-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.streaming-card:hover .streaming-image {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.watermark {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 105, 180, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.streaming-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF69B4 0%, #FFD700 50%, #FF1493 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.3);
}

.streaming-info p {
    color: #FFF8DC;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.important-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 105, 180, 0.08) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    margin-top: 2rem;
}

.note-icon {
    font-size: 1.5rem;
    color: #FFD700;
}

.important-note p {
    margin: 0;
    font-weight: 600;
    color: #FFD700;
    font-size: 1rem;
}

/* Process Section */
.process-section {
    padding: 180px 0 160px 0;
}

/* FAQ Section */
.faq-section {
    padding: 180px 0 120px 0;
}

/* Studio galerie pro OnlyFans a Webcams stránky */
.studio-section {
    padding: 160px 0 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 10, 26, 0.9) 100%);
}

.studio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.studio-map {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.studio-map:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

.studio-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    animation: elegantGlow 4s ease-in-out infinite alternate;
}

.studio-info p {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.7;
    color: #FFF8DC;
    opacity: 0.95;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(255, 248, 220, 0.3);
    animation: elegantGlow 4s ease-in-out infinite alternate 2s;
}

@keyframes elegantGlow {
    0% { 
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    }
    100% { 
        text-shadow: 0 0 25px rgba(255, 105, 180, 0.4), 0 0 35px rgba(255, 215, 0, 0.3);
    }
}

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

.studio-room {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.studio-room:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

.studio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.studio-room:hover .studio-image {
    transform: scale(1.1);
}

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

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

.room-overlay h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.room-overlay p {
    color: #FFF8DC;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mobile Responsiveness for Webcam Sections */
@media (max-width: 768px) {
    .webcam-elite {
        padding: 120px 0 100px 0;
    }
    
    .elite-grid {
        margin-bottom: 3rem;
    }
    
    .success-stories {
        padding: 120px 0 100px 0;
    }
    
    .streaming-examples {
        padding: 140px 0 100px 0;
    }
    
    .streaming-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .streaming-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .streaming-info h3 {
        font-size: 1.5rem;
    }
    
    .streaming-info p {
        font-size: 1rem;
    }
    
    .process-section {
        padding: 120px 0 100px 0;
    }
    
    .faq-section {
        padding: 120px 0 80px 0;
    }
    
    .studio-section {
        padding: 120px 0 60px 0;
    }
    
    .studio-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .studio-gallery {
        grid-template-columns: 1fr;
    }
    
    .studio-room {
        margin-bottom: 1rem;
    }
    
    .studio-info h3 {
        font-size: 1.8rem;
    }
    
    .studio-info p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .webcam-elite {
        padding: 80px 0 60px 0;
    }
    
    .success-stories {
        padding: 80px 0 60px 0;
    }
    
    .streaming-examples {
        padding: 100px 0 60px 0;
    }
    
    .process-section {
        padding: 80px 0 60px 0;
    }
    
    .faq-section {
        padding: 80px 0 40px 0;
    }
    
    .studio-section {
        padding: 80px 0 40px 0;
    }
    
    .streaming-gallery {
        gap: 1.5rem;
    }
    
    .streaming-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .studio-info h3 {
        font-size: 1.5rem;
    }
    
    .studio-info p {
        font-size: 1.1rem;
    }
}