/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #888888;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--primary-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

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

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-btn .flag {
    font-size: 1.2rem;
}

.language-btn .language-text {
    margin: 0 0.3rem;
}

.language-btn .dropdown-arrow {
    font-size: 0.8rem;
    transition: var(--transition);
}

.language-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 180px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

/* Custom scrollbar for language menu */
.language-menu::-webkit-scrollbar {
    width: 6px;
}

.language-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.language-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.language-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option .flag {
    font-size: 1.2rem;
}

.language-option .language-text {
    font-size: 0.9rem;
    font-weight: 500;
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="50" cy="50" r="1" fill="white" opacity="0.9"/><circle cx="150" cy="80" r="1" fill="white" opacity="0.7"/><circle cx="250" cy="120" r="1" fill="white" opacity="0.8"/><circle cx="350" cy="60" r="1" fill="white" opacity="0.6"/><circle cx="450" cy="180" r="1" fill="white" opacity="0.9"/><circle cx="550" cy="100" r="1" fill="white" opacity="0.5"/><circle cx="650" cy="220" r="1" fill="white" opacity="0.8"/><circle cx="750" cy="140" r="1" fill="white" opacity="0.7"/><circle cx="850" cy="260" r="1" fill="white" opacity="0.9"/><circle cx="950" cy="80" r="1" fill="white" opacity="0.6"/><circle cx="100" cy="300" r="1" fill="white" opacity="0.8"/><circle cx="200" cy="340" r="1" fill="white" opacity="0.5"/><circle cx="300" cy="280" r="1" fill="white" opacity="0.9"/><circle cx="400" cy="400" r="1" fill="white" opacity="0.7"/><circle cx="500" cy="320" r="1" fill="white" opacity="0.8"/><circle cx="600" cy="440" r="1" fill="white" opacity="0.6"/><circle cx="700" cy="360" r="1" fill="white" opacity="0.9"/><circle cx="800" cy="480" r="1" fill="white" opacity="0.5"/><circle cx="900" cy="400" r="1" fill="white" opacity="0.8"/><circle cx="50" cy="520" r="1" fill="white" opacity="0.7"/><circle cx="150" cy="560" r="1" fill="white" opacity="0.9"/><circle cx="250" cy="500" r="1" fill="white" opacity="0.6"/><circle cx="350" cy="620" r="1" fill="white" opacity="0.8"/><circle cx="450" cy="540" r="1" fill="white" opacity="0.5"/><circle cx="550" cy="660" r="1" fill="white" opacity="0.9"/><circle cx="650" cy="580" r="1" fill="white" opacity="0.7"/><circle cx="750" cy="700" r="1" fill="white" opacity="0.8"/><circle cx="850" cy="620" r="1" fill="white" opacity="0.6"/><circle cx="950" cy="740" r="1" fill="white" opacity="0.9"/><circle cx="100" cy="760" r="1" fill="white" opacity="0.5"/><circle cx="200" cy="800" r="1" fill="white" opacity="0.8"/><circle cx="300" cy="740" r="1" fill="white" opacity="0.7"/><circle cx="400" cy="860" r="1" fill="white" opacity="0.9"/><circle cx="500" cy="780" r="1" fill="white" opacity="0.6"/><circle cx="600" cy="900" r="1" fill="white" opacity="0.8"/><circle cx="700" cy="820" r="1" fill="white" opacity="0.5"/><circle cx="800" cy="940" r="1" fill="white" opacity="0.9"/><circle cx="900" cy="860" r="1" fill="white" opacity="0.7"/><circle cx="50" cy="880" r="1" fill="white" opacity="0.8"/><circle cx="150" cy="920" r="1" fill="white" opacity="0.6"/><circle cx="250" cy="860" r="1" fill="white" opacity="0.9"/><circle cx="350" cy="980" r="1" fill="white" opacity="0.5"/><circle cx="450" cy="900" r="1" fill="white" opacity="0.8"/><circle cx="550" cy="920" r="1" fill="white" opacity="0.7"/><circle cx="650" cy="840" r="1" fill="white" opacity="0.9"/><circle cx="750" cy="960" r="1" fill="white" opacity="0.6"/><circle cx="850" cy="880" r="1" fill="white" opacity="0.8"/><circle cx="950" cy="900" r="1" fill="white" opacity="0.5"/></svg>') repeat;
    animation: twinkle 8s ease-in-out infinite, slowDrift 120s linear infinite;
}

/* New creative background elements */
.cosmic-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: cosmicFlow 180s ease-in-out infinite;
}

.nebula-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="nebula1"><stop offset="0%" stop-color="rgba(79,172,254,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient><radialGradient id="nebula2"><stop offset="0%" stop-color="rgba(0,242,254,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><ellipse cx="300" cy="200" rx="150" ry="100" fill="url(%23nebula1)"/><ellipse cx="700" cy="300" rx="120" ry="80" fill="url(%23nebula2)"/><ellipse cx="200" cy="600" rx="100" ry="120" fill="url(%23nebula1)"/><ellipse cx="800" cy="700" rx="80" ry="90" fill="url(%23nebula2)"/></svg>') no-repeat;
    animation: nebulaFloat 240s ease-in-out infinite;
}

.energy-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(79, 172, 254, 0.03) 50%, transparent 70%);
    animation: waveFlow 300s linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes slowDrift {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(5px) translateY(-10px); }
    75% { transform: translateX(-5px) translateY(5px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes cosmicFlow {
    0% { 
        background: radial-gradient(circle at 20% 80%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    }
    33% { 
        background: radial-gradient(circle at 60% 40%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 30% 70%, rgba(0, 242, 254, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    }
    66% { 
        background: radial-gradient(circle at 40% 20%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(0, 242, 254, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    }
    100% { 
        background: radial-gradient(circle at 20% 80%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    }
}

@keyframes nebulaFloat {
    0% { 
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateX(-20px) translateY(-10px) scale(1.05);
        opacity: 0.5;
    }
    50% { 
        transform: translateX(15px) translateY(-20px) scale(0.95);
        opacity: 0.4;
    }
    75% { 
        transform: translateX(-10px) translateY(15px) scale(1.1);
        opacity: 0.6;
    }
    100% { 
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.3;
    }
}

@keyframes waveFlow {
    0% { 
        transform: translateX(-100%) rotate(0deg);
        opacity: 0;
    }
    10% { 
        opacity: 0.3;
    }
    90% { 
        opacity: 0.3;
    }
    100% { 
        transform: translateX(100%) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.main-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.tagline {
    margin-bottom: 2rem;
}

.tagline-text {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 1.5rem;
}

.hero-subdescription {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 500px;
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--highlight-color);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cosmic-orb {
    position: relative;
    width: 300px;
    height: 300px;
    animation: float 6s ease-in-out infinite;
}

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

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(79, 172, 254, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

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

.ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

/* Orbital movement for zodiac symbols */
.zodiac-symbol {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    animation: zodiacGlow 3s ease-in-out infinite alternate, orbitalMove 30s linear infinite;
    transform-origin: center;
}

/* Individual orbital speeds and directions */
.zodiac-symbol.aries { animation-duration: 25s, 25s; animation-direction: alternate, normal; }
.zodiac-symbol.taurus { animation-duration: 3s, 30s; animation-direction: alternate, reverse; }
.zodiac-symbol.gemini { animation-duration: 3s, 35s; animation-direction: alternate, normal; }
.zodiac-symbol.cancer { animation-duration: 3s, 28s; animation-direction: alternate, reverse; }
.zodiac-symbol.leo { animation-duration: 3s, 32s; animation-direction: alternate, normal; }
.zodiac-symbol.virgo { animation-duration: 3s, 27s; animation-direction: alternate, reverse; }
.zodiac-symbol.libra { animation-duration: 3s, 33s; animation-direction: alternate, normal; }
.zodiac-symbol.scorpio { animation-duration: 3s, 29s; animation-direction: alternate, reverse; }
.zodiac-symbol.sagittarius { animation-duration: 3s, 31s; animation-direction: alternate, normal; }
.zodiac-symbol.capricorn { animation-duration: 3s, 26s; animation-direction: alternate, reverse; }
.zodiac-symbol.aquarius { animation-duration: 3s, 34s; animation-direction: alternate, normal; }
.zodiac-symbol.pisces { animation-duration: 3s, 24s; animation-direction: alternate, reverse; }

.ring-1 {
    width: 200px;
    height: 200px;
    animation-duration: 20s;
}

.ring-2 {
    width: 250px;
    height: 250px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation-duration: 25s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Promo Section */
.promo {
    padding: 6rem 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

/* Horoscope Background Elements */
.horoscope-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    display: none; /* Hide horoscope elements */
}

/* Zodiac Circle */
.zodiac-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    animation: zodiacRotate 60s linear infinite;
}

.zodiac-symbol {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    animation: zodiacGlow 3s ease-in-out infinite alternate;
}

.zodiac-symbol.aries { top: 0; left: 50%; transform: translateX(-50%); }
.zodiac-symbol.taurus { top: 8.33%; right: 25%; }
.zodiac-symbol.gemini { top: 25%; right: 8.33%; }
.zodiac-symbol.cancer { top: 50%; right: 0; transform: translateY(-50%); }
.zodiac-symbol.leo { bottom: 25%; right: 8.33%; }
.zodiac-symbol.virgo { bottom: 8.33%; right: 25%; }
.zodiac-symbol.libra { bottom: 0; left: 50%; transform: translateX(-50%); }
.zodiac-symbol.scorpio { bottom: 8.33%; left: 25%; }
.zodiac-symbol.sagittarius { bottom: 25%; left: 8.33%; }
.zodiac-symbol.capricorn { top: 50%; left: 0; transform: translateY(-50%); }
.zodiac-symbol.aquarius { top: 25%; left: 8.33%; }
.zodiac-symbol.pisces { top: 8.33%; left: 25%; }

/* Floating Orbs */
.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.3) 0%, rgba(0, 242, 254, 0.1) 70%, transparent 100%);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.orb-4 {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 30%;
    animation-delay: 4.5s;
}

.orb-5 {
    width: 70px;
    height: 70px;
    bottom: 40%;
    right: 10%;
    animation-delay: 6s;
}

.orb-6 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 5%;
    animation-delay: 7.5s;
}

/* Cosmic Rings */
.cosmic-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cosmic-rings .ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

.ring-outer {
    width: 500px;
    height: 500px;
    animation-duration: 30s;
}

.ring-middle {
    width: 350px;
    height: 350px;
    animation-duration: 20s;
    animation-direction: reverse;
}

.ring-inner {
    width: 200px;
    height: 200px;
    animation-duration: 15s;
}

/* Star Particles */
.star-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.star {
    position: absolute;
    font-size: 1.5rem;
    animation: starTwinkle 4s ease-in-out infinite;
}

.star-1 { top: 15%; left: 20%; animation-delay: 0s; }
.star-2 { top: 25%; right: 25%; animation-delay: 0.5s; }
.star-3 { top: 45%; left: 15%; animation-delay: 1s; }
.star-4 { top: 55%; right: 35%; animation-delay: 1.5s; }
.star-5 { bottom: 30%; left: 30%; animation-delay: 2s; }
.star-6 { bottom: 20%; right: 20%; animation-delay: 2.5s; }
.star-7 { bottom: 40%; left: 45%; animation-delay: 3s; }
.star-8 { top: 35%; right: 10%; animation-delay: 3.5s; }

/* Animations */
@keyframes zodiacRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes zodiacGlow {
    from { 
        color: rgba(255, 255, 255, 0.3);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    to { 
        color: rgba(79, 172, 254, 0.6);
        text-shadow: 0 0 15px rgba(79, 172, 254, 0.6);
    }
}

@keyframes orbitalMove {
    0% {
        transform: rotate(0deg) translateX(0px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(0px) rotate(-360deg);
    }
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes starTwinkle {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.promo-header {
    margin-bottom: 2rem;
}

.promo-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.promo-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.cta-button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--text-light);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
}

/* Social Section */
.social {
    padding: 6rem 0;
    background: var(--primary-color);
}

.social-header {
    text-align: center;
    margin-bottom: 4rem;
}

.social-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.social-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-decoration: none;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--highlight-color);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.social-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.instagram .social-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.twitter .social-icon {
    background: #1da1f2;
}

.facebook .social-icon {
    background: #1877f2;
}

/* Countdown Section */
.countdown {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.countdown-wrapper {
    text-align: center;
}

.countdown-header {
    margin-bottom: 3rem;
}

.countdown-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.countdown-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.countdown-unit {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.countdown-note {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--primary-color);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}



.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-selector {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .tagline-text {
        font-size: 1.2rem;
    }
    
    .cosmic-orb {
        width: 200px;
        height: 200px;
    }
    
    .orb-core {
        width: 80px;
        height: 80px;
    }
    
    .ring-1 { width: 140px; height: 140px; }
    .ring-2 { width: 180px; height: 180px; }
    .ring-3 { width: 220px; height: 220px; }
    
    /* Horoscope Elements Mobile Adjustments */
    .zodiac-circle {
        width: 400px;
        height: 400px;
    }
    
    .zodiac-symbol {
        font-size: 1.5rem;
    }
    
    .orb {
        transform: scale(0.7);
    }
    
    .cosmic-rings .ring {
        transform: scale(0.8);
    }
    
    .ring-outer {
        width: 350px;
        height: 350px;
    }
    
    .ring-middle {
        width: 250px;
        height: 250px;
    }
    
    .ring-inner {
        width: 150px;
        height: 150px;
    }
    
    .star {
        font-size: 1.2rem;
    }
    
    .promo-card {
        padding: 2rem;
    }
    
    .promo-header h2 {
        font-size: 2rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-display {
        flex-direction: column;
        gap: 1rem;
    }
    
    .countdown-unit {
        min-width: 200px;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .tagline-text {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-subdescription {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
    
    /* Horoscope Elements Small Screen Adjustments */
    .zodiac-circle {
        width: 300px;
        height: 300px;
    }
    
    .zodiac-symbol {
        font-size: 1.2rem;
    }
    
    .orb {
        transform: scale(0.5);
    }
    
    .cosmic-rings .ring {
        transform: scale(0.6);
    }
    
    .ring-outer {
        width: 250px;
        height: 250px;
    }
    
    .ring-middle {
        width: 180px;
        height: 180px;
    }
    
    .ring-inner {
        width: 120px;
        height: 120px;
    }
    
    .star {
        font-size: 1rem;
    }
    
    .promo-header h2,
    .social-header h3,
    .countdown-header h3 {
        font-size: 1.8rem;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
} 