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

:root {
    --primary-color: #00CED1;
    --secondary-color: #9D4EDD;
    --accent-color: #FFD700;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #00CED1 0%, #9D4EDD 100%);
    --gradient-2: linear-gradient(135deg, #2d1b69 0%, #11998e 50%, #38ef7d 100%);
    --gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 2rem;
}

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

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

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

.nav-menu a:hover {
    color: var(--primary-color);
}

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

/* Doğum Haritası Link Animation */
.nav-birth-chart {
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(0, 206, 209, 0.5);
}

.nav-birth-chart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.3) 0%, transparent 70%);
    border-radius: 10px;
    animation: pulseGlowBg 2s ease-in-out infinite;
    z-index: -1;
}

/* Nasıl Çalışır Link Animation - Sarı Işık */
.nav-menu a[href="nasil-calisir.html"] {
    position: relative;
    animation: pulseGlowYellow 2s ease-in-out infinite;
    font-weight: 600 !important;
    color: var(--accent-color) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-menu a[href="nasil-calisir.html"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 10px;
    animation: pulseGlowYellowBg 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlowYellow {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
    }
}

@keyframes pulseGlowYellowBg {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(0, 206, 209, 0.5), 0 0 20px rgba(0, 206, 209, 0.3);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 20px rgba(0, 206, 209, 0.8), 0 0 30px rgba(0, 206, 209, 0.6), 0 0 40px rgba(0, 206, 209, 0.4);
    }
}

@keyframes pulseGlowBg {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.nav-birth-chart:hover {
    animation: none;
    text-shadow: 0 0 15px rgba(0, 206, 209, 0.8), 0 0 25px rgba(0, 206, 209, 0.6);
}

.nav-menu a[href="nasil-calisir.html"]:hover {
    animation: none;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.6);
}

/* Astroblog Link Animation - Turuncu Işık */
.nav-menu a[href="astroblog.html"] {
    position: relative;
    animation: pulseGlowOrange 2s ease-in-out infinite;
    font-weight: 600 !important;
    color: #FF8C00 !important;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.nav-menu a[href="astroblog.html"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.4) 0%, transparent 70%);
    border-radius: 10px;
    animation: pulseGlowOrangeBg 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlowOrange {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5), 0 0 20px rgba(255, 140, 0, 0.3);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.8), 0 0 30px rgba(255, 140, 0, 0.6), 0 0 40px rgba(255, 140, 0, 0.4);
    }
}

@keyframes pulseGlowOrangeBg {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.nav-menu a[href="astroblog.html"]:hover {
    animation: none;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.8), 0 0 25px rgba(255, 140, 0, 0.6);
}

.nav-birth-chart:hover::before {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.15);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav-register {
    padding: 0.6rem 1.5rem;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-nav-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

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

.stars, .stars2, .stars3 {
    position: absolute;
    width: 1px;
    height: 1px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.stars {
    box-shadow: 
        200px 100px white,
        400px 200px white,
        600px 150px white,
        800px 300px white,
        1000px 250px white,
        1200px 180px white,
        200px 400px white,
        400px 500px white,
        600px 450px white,
        800px 600px white,
        1000px 550px white,
        1200px 480px white;
    animation-delay: 0s;
}

.stars2 {
    box-shadow: 
        300px 150px white,
        500px 250px white,
        700px 200px white,
        900px 350px white,
        1100px 300px white,
        300px 450px white,
        500px 550px white,
        700px 500px white,
        900px 650px white,
        1100px 600px white;
    animation-delay: 1s;
    opacity: 0.7;
}

.stars3 {
    box-shadow: 
        250px 120px white,
        450px 220px white,
        650px 170px white,
        850px 320px white,
        1050px 270px white,
        250px 420px white,
        450px 520px white,
        650px 470px white,
        850px 620px white,
        1050px 570px white;
    animation-delay: 2s;
    opacity: 0.5;
}

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

.hero-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    z-index: 1;
    animation: fadeInUp 1s ease;
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
}

.hero-phone {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.phone-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 206, 209, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

/* App Download Buttons */
.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    width: 100%;
    max-width: 480px;
    margin-top: 1.6rem;
}

.app-buttons-row {
    display: flex;
    flex-direction: row;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.app-download-buttons .app-download-btn {
    width: auto;
    min-width: 160px;
    flex: 1;
    max-width: 180px;
}

.download-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    text-align: center;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.6rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 56px;
    height: 56px;
    box-sizing: border-box;
}

.app-download-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(0, 206, 209, 0.1);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.2);
}

.app-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.app-info {
    flex: 1;
    text-align: left;
}

.app-label {
    font-size: 0.55rem;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.app-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.playstore-btn {
    border-color: rgba(66, 133, 244, 0.5);
}

.playstore-btn:hover {
    border-color: #4285f4;
    background: rgba(66, 133, 244, 0.1);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.2);
}

.appstore-btn {
    border-color: rgba(0, 122, 255, 0.5);
}

.appstore-btn:hover {
    border-color: #007aff;
    background: rgba(0, 122, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.2);
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 100%;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    min-height: 56px;
    height: 56px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.free-question-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    z-index: 10;
}

.btn-free-question {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD700 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    position: relative;
    overflow: hidden;
    animation: shimmer 3s infinite;
    min-height: 56px;
    height: 56px;
    box-sizing: border-box;
    z-index: 10;
    cursor: pointer;
}

.btn-free-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shimmer {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.6), 0 0 20px rgba(255, 107, 53, 0.4);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.btn-free-question:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 107, 53, 0.5);
}

.btn-free-text {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.btn-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.btn-store-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-store-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.free-question-note {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 0;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* Specialists Carousel */
.specialists-banner-mobile {
    display: none;
}

.specialists-carousel-container {
    position: relative;
    width: 100%;
    margin: 24px auto;
    overflow: visible;
    padding: 0 30px;
    display: flex;
    justify-content: center;
}

.specialists-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0;
    width: calc(5 * (120px + 15px) - 15px); /* 5 kart + gap'ler */
    margin: 0 auto;
    position: relative;
    will-change: scroll-position;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
}

.specialists-carousel::-webkit-scrollbar {
    display: none;
}

.specialist-card {
    min-width: 120px;
    max-width: 120px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    will-change: transform;
    isolation: isolate;
    overflow: hidden;
    scroll-snap-align: start;
}

.specialist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.3);
    border-color: var(--primary-color);
}

.specialist-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 206, 209, 0.3);
    background: rgba(0, 0, 0, 0.5);
    display: block;
    position: relative;
    z-index: 2;
}

.specialist-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.specialist-title {
    font-size: 10px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.specialist-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 11px;
    color: var(--accent-color);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 206, 209, 0.8);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(0, 206, 209, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

@media (max-width: 768px) {
    .specialist-card {
        min-width: 100px;
        max-width: 100px;
        padding: 10px;
    }
    
    .specialist-photo {
        width: 50px;
        height: 50px;
    }
    
    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .carousel-prev {
        left: -15px;
    }
    
    .carousel-next {
        right: -15px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--bg-darker);
    padding-top: 150px;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Modules Section */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.module-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.module-card:hover::before {
    transform: scaleX(1);
}

.module-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.module-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.module-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.module-features {
    list-style: none;
    padding: 0;
}

.module-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.module-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Membership Section */
.membership {
    background: var(--bg-darker);
}

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

.membership-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.membership-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 206, 209, 0.3);
}

.membership-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.membership-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.membership-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.membership-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.price-currency {
    color: var(--text-secondary);
    font-size: 1rem;
}

.membership-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.membership-features li {
    color: var(--text-secondary);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.btn-membership {
    width: 100%;
    background: var(--gradient-1);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-membership:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
}

/* About Section */
.about {
    background: var(--bg-darker);
}

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

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

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

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.about-feature-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .container {
        padding: 0 12px;
        max-width: 100%;
        width: 100%;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-content {
        padding: 0 12px;
    }

    .logo-img {
        height: 28px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        padding: 1.5rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-color);
        gap: 1rem;
    }

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

    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 100px;
        overflow: visible;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        width: 100%;
    }
    
    .hero-phone {
        order: 1;
        margin-top: 0;
        margin-bottom: 0.5rem;
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
        justify-content: center;
    }

    .phone-image {
        max-height: 250px;
        width: auto;
        flex-shrink: 0;
        object-fit: contain;
    }
    
    .app-download-buttons {
        max-width: none;
        margin: 0;
        width: auto;
        padding: 0;
        align-self: center;
        flex: 0 0 auto;
        min-width: 0;
    }
    
    .download-title {
        display: none;
    }
    
    .app-buttons-row {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .app-download-buttons .app-download-btn {
        max-width: 150px;
        width: 100%;
        min-width: 140px;
        flex: 0 0 auto;
        padding: 0.5rem 0.6rem;
        gap: 0.4rem;
        overflow: hidden;
    }

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

    .app-label {
        font-size: 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .app-name {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .app-icon-img {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .phone-register-button {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 1rem auto 0;
        padding: 0;
        flex-basis: 100%;
        order: 2;
    }

    .phone-register-button .btn {
        width: 100%;
    }

    .register-btn-desktop {
        display: none;
    }
    
    .hero-text {
        order: 2;
        text-align: center;
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 0.75rem;
        line-height: 1.2;
        padding: 0 5px;
        order: 1;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        text-align: center;
        margin-bottom: 1rem;
        padding: 0 5px;
        line-height: 1.5;
        order: 1;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        margin-top: 0;
        width: 100%;
        padding: 0;
        position: relative;
        z-index: 10;
        order: 2;
    }

    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        min-height: 44px;
        height: 44px;
        white-space: nowrap;
        word-wrap: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }

    .btn-primary,
    .free-question-container {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        position: relative;
        z-index: 10;
    }

    .btn-primary {
        width: 100%;
        position: relative;
        z-index: 10;
    }

    .free-question-container {
        width: 100%;
        position: relative;
        z-index: 10;
    }

    .btn-free-question {
        width: 100%;
        position: relative;
        z-index: 10;
        padding: 0.7rem 0.75rem;
        gap: 0.4rem;
    }

    .btn-free-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex-shrink: 1;
    }

    .btn-store-btn {
        flex-shrink: 0;
    }

    .btn-free-question {
        padding: 0.75rem 1rem;
        min-height: 46px;
        height: auto;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-free-text {
        font-size: 0.8rem;
        white-space: normal;
    }

    .free-question-container {
        width: 100%;
    }

    .free-question-note {
        font-size: 0.6rem;
        padding: 0 5px;
        line-height: 1.4;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.25rem;
        flex-wrap: wrap;
        width: 100%;
        padding: 0;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-register-banner {
        display: none;
    }

    .register-banner-text {
        font-size: 0.4rem;
        line-height: 1.25;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .register-banner-text strong {
        display: block;
        margin-bottom: 0.3rem;
        font-size: 0.65rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .features {
        padding-top: 120px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .feature-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .module-card {
        padding: 1.5rem;
    }

    .module-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .module-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .module-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .membership-card.featured {
        transform: scale(1);
    }

    .membership-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

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

    .specialists-banner-mobile {
        display: block;
        width: 100%;
        padding: 0.5rem 0.75rem;
        margin: 1rem 0 0.75rem 0;
        text-align: center;
        box-sizing: border-box;
    }

    .specialists-banner-text {
        font-size: 0.4rem;
        line-height: 1.25;
        color: var(--text-primary);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        margin: 0;
    }

    .specialists-banner-text strong {
        display: block;
        margin-bottom: 0.3rem;
        font-size: 0.65rem;
        color: var(--primary-color);
    }

    .specialists-carousel-container {
        padding: 0 20px;
    }

    .specialist-card {
        min-width: 90px;
        max-width: 90px;
        padding: 8px;
    }

    .specialist-photo {
        width: 45px;
        height: 45px;
    }

    .specialist-name {
        font-size: 11px;
    }

    .specialist-title {
        font-size: 9px;
    }

    .carousel-btn {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .carousel-prev {
        left: -10px;
    }

    .carousel-next {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
    }

    .nav-content {
        padding: 0 10px;
    }

    .logo-img {
        height: 26px;
    }

    .hero {
        padding-top: 60px;
        padding-bottom: 90px;
    }

    .hero-content {
        gap: 1.25rem;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        padding: 0;
        order: 1;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
        padding: 0;
        line-height: 1.4;
        order: 1;
    }

    .hero-buttons {
        gap: 0.65rem;
        margin-bottom: 1.25rem;
        flex-direction: column;
        flex-wrap: nowrap;
        order: 2;
    }

    .btn {
        padding: 0.65rem 0.9rem;
        font-size: 0.75rem;
        min-height: 42px;
        height: 42px;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }

    .btn-primary,
    .free-question-container {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .btn-free-question {
        padding: 0.65rem 0.7rem;
        gap: 0.35rem;
        width: 100%;
    }

    .btn-free-text {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-register-banner {
        display: none;
    }

    .hero-phone {
        gap: 0.3rem;
        justify-content: center;
    }

    .phone-image {
        max-height: 200px;
    }

    .app-download-buttons {
        max-width: none;
        margin: 0;
        width: auto;
        flex: 0 0 auto;
        min-width: 0;
    }

    .app-buttons-row {
        flex-direction: column;
        gap: 0.45rem;
    }

    .app-download-buttons .app-download-btn {
        max-width: 135px;
        min-width: 130px;
        padding: 0.45rem 0.55rem;
        gap: 0.35rem;
        overflow: hidden;
    }

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

    .app-label {
        font-size: 0.45rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .app-name {
        font-size: 0.65rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .app-icon-img {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .phone-register-button {
        max-width: 280px;
    }

    .btn-free-question {
        padding: 0.7rem 0.875rem;
        min-height: 44px;
        height: auto;
    }

    .btn-free-text {
        font-size: 0.75rem;
    }

    .btn-store-btn {
        width: 28px;
        height: 28px;
    }

    .btn-store-icon {
        width: 18px;
        height: 18px;
    }


    .hero-stats {
        gap: 0.875rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .hero-register-banner {
        display: none;
    }

    .register-banner-text {
        font-size: 0.375rem;
        line-height: 1.2;
    }

    .register-banner-text strong {
        font-size: 0.6rem;
        margin-bottom: 0.25rem;
    }

    .free-question-note {
        font-size: 0.55rem;
        padding: 0;
    }

    .specialists-banner-mobile {
        padding: 0.45rem 0.65rem;
        margin: 0.875rem 0 0.625rem 0;
    }

    .specialists-banner-text {
        font-size: 0.375rem;
        line-height: 1.2;
    }

    .specialists-banner-text strong {
        font-size: 0.6rem;
        margin-bottom: 0.25rem;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .features {
        padding-top: 110px;
    }

    .features-grid,
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card,
    .module-card {
        padding: 1.25rem;
    }

    .feature-icon,
    .module-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .feature-title,
    .module-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-description,
    .module-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .membership-card {
        padding: 1.5rem;
    }

    .membership-title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .specialist-card {
        min-width: 80px;
        max-width: 80px;
        padding: 6px;
    }

    .specialist-photo {
        width: 40px;
        height: 40px;
    }

    .specialist-name {
        font-size: 10px;
    }

    .specialist-title {
        font-size: 8px;
    }

    .carousel-btn {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .carousel-prev {
        left: -5px;
    }

    .carousel-next {
        right: -5px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .phone-image {
        max-height: 250px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .feature-card,
    .module-card {
        padding: 1rem;
    }

    .feature-title,
    .module-title {
        font-size: 1rem;
    }

    .feature-description,
    .module-description {
        font-size: 0.8rem;
    }

    .specialists-banner-mobile {
        padding: 0.4rem 0.6rem;
        margin: 0.75rem 0 0.5rem 0;
    }

    .specialists-banner-text {
        font-size: 0.35rem;
        line-height: 1.15;
    }

    .specialists-banner-text strong {
        font-size: 0.55rem;
        margin-bottom: 0.2rem;
    }

    .hero-register-banner {
        display: none;
    }

    .register-banner-text {
        font-size: 0.35rem;
        line-height: 1.15;
    }

    .register-banner-text strong {
        font-size: 0.55rem;
        margin-bottom: 0.2rem;
    }
}

/* Phone Register Button - Hidden on desktop, visible on mobile */
.phone-register-button {
    display: none;
}

/* Hero Register Banner */
.hero-register-banner {
    background: rgba(0, 206, 209, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    max-width: 100%;
    text-align: left;
    box-sizing: border-box;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
}

.register-banner-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.banner-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.register-banner-text strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    background: var(--bg-card);
    margin: 2% auto;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

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

.register-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Register Form */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.1);
}

.form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

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

.error-message {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
    padding: 1rem;
    border-radius: 10px;
    display: none;
    margin-bottom: 1rem;
}

.success-message {
    background: rgba(0, 206, 209, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem;
    border-radius: 10px;
    display: none;
    margin-bottom: 1rem;
}

.btn-register {
    width: 100%;
    background: var(--gradient-1);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
}

.btn-register:active {
    transform: translateY(0);
}

/* Coordinate Status */
.coordinate-status {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    min-height: 20px;
}

.coordinate-status.searching {
    color: var(--primary-color);
    background: rgba(0, 206, 209, 0.1);
}

.coordinate-status.success {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.coordinate-status.error {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

/* Responsive for Modal */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 5% auto;
    }
    
    .register-header h2 {
        font-size: 1.5rem;
    }
}

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

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

/* Blog Styles */
.blog-section {
    padding: 120px 0 100px;
    background: var(--bg-dark);
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.blog-search {
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.blog-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.1);
}

.blog-loading {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.blog-error {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    border-radius: 10px;
    color: #ff6b6b;
    margin: 2rem 0;
}

.blog-empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-darker);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.blog-card-date {
    color: var(--primary-color);
}

.blog-card-author {
    color: var(--text-secondary);
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.blog-card-reads {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-card-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.blog-modal-content {
    background: var(--bg-card);
    margin: 2% auto;
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.blog-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.blog-modal-close:hover {
    color: var(--primary-color);
}

.blog-detail {
    color: var(--text-primary);
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
    background: var(--bg-darker);
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-header {
    margin-bottom: 2rem;
}

.blog-detail-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.blog-detail-date {
    color: var(--primary-color);
}

.blog-detail-author {
    color: var(--text-secondary);
}

.blog-detail-reads {
    color: var(--text-muted);
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-detail-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-detail-content h1 {
    font-size: 2rem;
}

.blog-detail-content h2 {
    font-size: 1.75rem;
}

.blog-detail-content h3 {
    font-size: 1.5rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
}

.nav-menu a.active {
    color: var(--primary-color);
}

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

/* Coming Soon Modal */
.coming-soon-modal {
    display: flex;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.coming-soon-modal-content {
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalSlideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 206, 209, 0.3);
}

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

.coming-soon-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.coming-soon-close:hover {
    color: var(--primary-color);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

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

.coming-soon-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn-coming-soon {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-coming-soon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
}

/* Birth Chart Section */
.birth-chart-section {
    padding: 120px 0 100px;
    background: var(--bg-dark);
    min-height: 100vh;
}

.birth-chart-header {
    text-align: center;
    margin-bottom: 3rem;
}

.birth-chart-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.birth-chart-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.birth-chart-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.birth-chart-top-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.birth-chart-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
}

.birth-chart-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-chart-calculate {
    width: 100%;
    background: var(--gradient-1);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-chart-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
}

.btn-chart-calculate:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

/* Birth Chart Result */
.birth-chart-result {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    animation: fadeInUp 0.5s ease;
    width: 100%;
    margin-top: 2rem;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.result-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-close-result {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-result:hover {
    color: var(--primary-color);
}

.result-content {
    color: var(--text-primary);
}

.chart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.chart-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.25rem;
    min-width: 0;
}

.chart-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.chart-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.chart-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.chart-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.chart-value {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-align: right;
    flex-shrink: 1;
    word-break: break-word;
}

.error-text {
    color: #ff6b6b;
    text-align: center;
    padding: 2rem;
}

/* App Download Section in Birth Chart Page */
.app-download-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.app-download-section .app-download-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-download-section .app-buttons-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.app-download-section .app-download-btn {
    min-width: 200px;
    max-width: 224px;
    flex: 1;
}

/* Responsive Birth Chart */
@media (max-width: 1200px) {
    .chart-grid {
        grid-template-columns: 1fr;
    }
    
    .birth-chart-top-section {
        grid-template-columns: 1fr;
    }
    
    .app-download-section {
        position: static;
    }
}

@media (max-width: 968px) {
    .birth-chart-top-section {
        grid-template-columns: 1fr;
    }
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-page-title {
        font-size: 2rem;
    }
    
    .blog-modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
        margin: 5% auto;
    }
    
    .blog-detail-title {
        font-size: 1.75rem;
    }
    
    .blog-detail-image {
        height: 250px;
    }
    
    .coming-soon-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .coming-soon-title {
        font-size: 1.5rem;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
}

