/* Enhanced Fortune Teller Styles */

/* ===== BASE STYLES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 900;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.badge-shimmer {
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #667eea, #f093fb, #667eea);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ===== FORTUNE HERO & GENERATOR ===== */
.fortune-hero {
    padding: 60px 20px 40px;
    min-height: auto;
}

.fortune-container {
    max-width: 900px;
    margin: 0 auto;
}

.fortune-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-align: center;
}

.fortune-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 1.5rem;
}

.fortune-input-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.input-group {
    margin-bottom: 1.25rem;
}

.fortune-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.fortune-input,
.fortune-select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.fortune-input:focus,
.fortune-select:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.fortune-select option {
    background: #1a1a2e;
    color: #fff;
}

.fortune-btn {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    margin-top: 0.25rem;
    position: relative;
    overflow: hidden;
}

.fortune-btn .sparkle {
    margin-left: 0.5rem;
    font-size: 1.5rem;
}

/* ===== FORTUNE RESULT ===== */
.fortune-result {
    margin-top: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.fortune-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
}

.fortune-greeting {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 0.5rem;
}

.fortune-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.fortune-section h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fortune-text,
.fortune-advice {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.lucky-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.lucky-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lucky-item:hover {
    transform: translateY(-5px);
    border-color: #667eea;
}

.lucky-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.lucky-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.focus-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.focus-tag {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 2px solid rgba(102, 126, 234, 0.5);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.focus-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

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

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

/* ===== WORLD MAP SECTION ===== */
.world-map-section {
    padding: 30px 20px;
}

.world-clock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.clock-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.4s ease;
}

.clock-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.clock-card .flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.clock-card h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.clock-card .time {
    font-size: 2.5rem;
    font-weight: 900;
    color: #667eea;
    font-family: 'Courier New', monospace;
    margin: 1.5rem 0;
}

.clock-card .status {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.status.waiting {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.status.celebrating {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    animation: pulse 1.5s infinite;
}

.status.completed {
    background: rgba(102, 195, 131, 0.2);
    color: #66c383;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(102, 126, 234, 0);
    }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER OVERRIDES ===== */
.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2) rotate(15deg);
}

.fortune-intro-hero {
    min-height: auto;
    padding: 80px 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.intro-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.mega-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.mega-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.intro-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.4s ease;
}

.intro-stat:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.fortune-container {
    max-width: 900px;
    margin: 0 auto;
}

.fortune-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-weight: 900;
    text-align: center;
}

.fortune-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
}

.fortune-input-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.fortune-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.fortune-input,
.fortune-select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.fortune-input:focus,
.fortune-select:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.fortune-select option {
    background: #1a1a2e;
    color: #fff;
}

.fortune-btn {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.fortune-btn .sparkle {
    margin-left: 0.5rem;
    font-size: 1.5rem;
}

/* ===== FORTUNE RESULT ===== */
.fortune-result {
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease;
}

.fortune-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
}

.fortune-greeting {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 0.5rem;
}

.fortune-section {
    margin: 2rem 0;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.fortune-section h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.fortune-text,
.fortune-advice {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.lucky-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.lucky-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lucky-item:hover {
    transform: translateY(-5px);
    border-color: #667eea;
}

.lucky-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.lucky-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.focus-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.focus-tag {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 2px solid rgba(102, 126, 234, 0.5);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.focus-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

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

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

/* ===== WORLD MAP SECTION ===== */
.world-map-section {
    padding: 50px 20px;
}

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

.clock-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.clock-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.clock-card .flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.clock-card h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.clock-card .time {
    font-size: 2.5rem;
    font-weight: 900;
    color: #667eea;
    font-family: 'Courier New', monospace;
    margin: 1.5rem 0;
}

.clock-card .status {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.status.waiting {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.status.celebrating {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    animation: pulse 1.5s infinite;
}

.status.completed {
    background: rgba(102, 195, 131, 0.2);
    color: #66c383;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(102, 126, 234, 0);
    }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER OVERRIDES ===== */
.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2) rotate(15deg);
}

.fortune-intro-hero {
    min-height: auto;
    padding: 100px 20px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.intro-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.mega-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    font-weight: 900;
    line-height: 1.2;
}

.mega-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.intro-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.intro-stat:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.02);
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.5);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ===== FEATURES SHOWCASE ===== */
.features-showcase {
    padding: 30px 20px;
}

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

.feature-showcase-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.4s ease;
}

.feature-showcase-card:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

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

.feature-showcase-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-showcase-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ===== ZODIAC SECTION ===== */
.zodiac-section {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
}

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

.zodiac-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.zodiac-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.zodiac-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.5));
}

.zodiac-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.zodiac-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.zodiac-preview {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== WORLD MAP ENHANCEMENTS ===== */
.map-info {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
}

.location-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    min-height: 40px;
}

.timezone-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-family: 'Courier New', monospace;
}

.celebration-facts {
    margin-top: 2rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.celebration-facts h3 {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

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

.fact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
}

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

.fact-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.fortune-cta-section {
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.cta-btn {
    min-width: 250px;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

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

.feature-showcase-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.feature-showcase-card:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

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

.feature-showcase-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-showcase-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ===== ENHANCED FORTUNE INPUT ===== */
.input-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.label-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.input-helper {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    font-style: italic;
}

.fortune-disclaimer {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ===== ENHANCED FORTUNE RESULT ===== */
.fortune-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.fortune-timestamp {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.fortune-section.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-left: 4px solid #667eea;
}

.section-intro {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.lucky-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.lucky-desc {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

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

.month-indicator {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.month-indicator:hover {
    border-color: #667eea;
    transform: scale(1.05);
}

.month-name {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.month-energy {
    font-size: 2rem;
}

.fortune-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.fortune-actions .btn {
    flex: 1;
    min-width: 200px;
}

/* ===== ZODIAC SECTION ===== */
.zodiac-section {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.02);
}

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

.zodiac-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.zodiac-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.zodiac-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.5));
}

.zodiac-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.zodiac-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.zodiac-preview {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== WORLD MAP ENHANCEMENTS ===== */
.map-info {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
}

.location-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    min-height: 40px;
}

.timezone-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-family: 'Courier New', monospace;
}

.celebration-facts {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.celebration-facts h3 {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.fact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
}

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

.fact-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.fortune-cta-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.75rem;
}

.cta-btn {
    min-width: 250px;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* ===== ENHANCED FOOTER ===== */
.footer-main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .monthly-forecast {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .fortune-actions {
        flex-direction: column;
    }

    .fortune-actions .btn {
        width: 100%;
    }

    .footer-main-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .monthly-forecast {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .cta-btn {
        min-width: 200px;
        padding: 1rem 2rem;
    }
}