/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .title, .countdown-title {
    font-family: 'Playfair Display', 'Georgia', serif;
}

/* Animated background stars */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 20s linear infinite;
    z-index: -1;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Language Switcher - 7 Languages Support */
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.lang-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 10px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    justify-content: space-between;
}

.lang-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.lang-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.globe-icon, .chevron-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.chevron-icon {
    transform: rotate(0deg);
}

.lang-toggle.open .chevron-icon {
    transform: rotate(180deg);
}

.current-lang {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
}

.lang-option:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(4px);
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(255, 215, 0, 0.2));
    color: #d4af37;
}

.lang-flag {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.lang-name {
    flex: 1;
    font-weight: 500;
}

.lang-code {
    font-size: 0.8rem;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.title {
    font-size: 4rem;
    font-weight: 400;
    color: #f8f8f8;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.4rem;
    color: #d4af37;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
}

.header-description {
    font-size: 1.1rem;
    color: #c0c0c0;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.header::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #ffd700, #d4af37);
    margin: 20px auto 0;
    border-radius: 1px;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Moon container */
.moon-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.moon {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 50%, #d0d0d0 100%);
    position: relative;
    box-shadow: 
        0 0 60px rgba(212, 175, 55, 0.4),
        inset -20px -20px 50px rgba(0, 0, 0, 0.2),
        0 0 120px rgba(255, 255, 255, 0.15);
    animation: moonFloat 8s ease-in-out infinite;
    transition: all 0.5s ease;
    overflow: hidden;
    background-image: url('https://svs.gsfc.nasa.gov/vis/a000000/a004700/a004720/lroc_color_poles_1k.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid rgba(212, 175, 55, 0.3);
}

@keyframes moonFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.moon-surface {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 30%);
}

.moon-craters {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.lighting-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.5s ease;
}

.crater {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.crater-1 {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 25%;
}

.crater-2 {
    width: 25px;
    height: 25px;
    top: 40%;
    right: 20%;
}

.crater-3 {
    width: 35px;
    height: 35px;
    bottom: 30%;
    left: 15%;
}

.crater-4 {
    width: 20px;
    height: 20px;
    bottom: 20%;
    right: 30%;
}

.moon-phase-label {
    font-size: 1.8rem;
    font-weight: 400;
    color: #d4af37;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-style: italic;
    letter-spacing: 1px;
}

/* Countdown section */
.countdown-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 40px 0;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 35px;
    color: #d4af37;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.time-value {
    font-size: 3.2rem;
    font-weight: 400;
    color: #f8f8f8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
}

.time-label {
    font-size: 1rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Info section - Removed for minimalist design */

/* Current Phase & Illumination sections removed for cleaner viral design */

/* Location info */
.location-info {
    text-align: center;
    margin: 10px 0;
}

.location-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.location-icon {
    width: 16px;
    height: 16px;
    color: #d4af37;
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 25px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.visitor-counter, .energy-level {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.counter-icon, .energy-icon {
    width: 20px;
    height: 20px;
    color: #d4af37;
}

.counter-text, .energy-text {
    color: #e0e0e0;
}

/* Energy Level */
.energy-level {
    padding: 20px;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1), rgba(100, 200, 255, 0.1));
    border: 2px solid rgba(74, 158, 255, 0.3);
    border-radius: 20px;
}

.energy-level:hover {
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.15), rgba(100, 200, 255, 0.15));
    box-shadow: 0 12px 35px rgba(74, 158, 255, 0.3);
}

.energy-level .streak-progress {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.energy-circle {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a9eff, #6bb6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.4);
    flex-shrink: 0;
}

.energy-circle .energy-icon {
    color: #1a1a2e;
    font-size: 1.5rem;
    position: absolute;
    top: 8px;
}

.energy-number {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    bottom: 8px;
}

.energy-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.energy-label {
    color: #f8f8f8;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.energy-description {
    color: #4a9eff;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Energy Pulse */
.energy-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: energyPulse 3s ease-in-out infinite;
    pointer-events: none;
}

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

/* Daily Insight */
.daily-insight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: insightGlow 4s ease-in-out infinite;
}

@keyframes insightGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); }
}

/* insight-icon removed for cleaner design */

.insight-text {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 500;
    line-height: 1.5;
}

/* Interactive Section */
.interactive-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.mood-tracker, .share-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mood-tracker h3, .share-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.mood-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.mood-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mood-btn i {
    width: 16px;
    height: 16px;
}

.mood-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.mood-btn.selected {
    background: rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.mood-stats {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Mood Section */
.mood-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mood-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    pointer-events: none;
}

.mood-section .section-header {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.mood-section h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mood-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mood-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 10px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 80px;
    position: relative;
    z-index: 1;
}

.mood-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffd700;
    transform: translateY(-2px);
}

.mood-btn i {
    font-size: 1.5rem;
    color: #ffd700;
}

.mood-stats {
    color: #b0b0b0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Social Sharing Section */
.social-sharing-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-sharing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    pointer-events: none;
}

.social-sharing-section .section-header {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.social-sharing-section .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-sharing-section h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-sharing-section .section-description {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Duplicate removed - using the one above */

/* Share Buttons - Icon Only Design */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 12px;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.share-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    text-decoration: none;
    min-height: 48px;
    position: relative;
}

.share-btn.icon-only {
    width: 48px;
    height: 48px;
    padding: 0;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn i {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.social-icon {
    width: 20px;
    height: 20px;
    display: block;
    visibility: visible;
}

.social-icon path {
    fill: inherit;
}

/* Platform-specific colors on hover */
.share-btn[id="shareFacebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.share-btn[id="shareTwitter"]:hover {
    background: #000;
    border-color: #000;
}


.share-btn[id="shareTelegram"]:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.share-btn[id="shareLinkedIn"]:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.share-btn[id="sharePinterest"]:hover {
    background: #e60023;
    border-color: #e60023;
}

.share-btn[id="shareReddit"]:hover {
    background: #ff4500;
    border-color: #ff4500;
}

.share-btn[id="shareVK"]:hover {
    background: #0077ff;
    border-color: #0077ff;
}

.share-btn[id="shareWeChat"]:hover {
    background: #07c160;
    border-color: #07c160;
}

.share-btn[id="shareLine"]:hover {
    background: #00c300;
    border-color: #00c300;
}

.share-btn[id="shareQQ"]:hover {
    background: #12b7f5;
    border-color: #12b7f5;
}

.share-btn[id="shareWeibo"]:hover {
    background: #e6162d;
    border-color: #e6162d;
}

.share-btn[id="shareKakao"]:hover {
    background: #fee500;
    color: #000;
    border-color: #fee500;
}

.share-btn[id="copyLink"]:hover {
    background: #667eea;
    border-color: #667eea;
}


#copyLink {
    background: linear-gradient(135deg, #6c757d, #495057);
}

#copyLink:hover {
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

/* Daily Challenge - Removed for minimalist viral design */

.daily-challenge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), transparent);
    pointer-events: none;
}

.daily-challenge h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6b6b;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.challenge-icon {
    width: 24px;
    height: 24px;
    color: #ff6b6b;
}

.challenge-content p {
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.challenge-btn {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.challenge-btn i {
    width: 18px;
    height: 18px;
}

.challenge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
    background: linear-gradient(135deg, #c0392b, #e67e22);
    border-color: rgba(255, 255, 255, 0.3);
}

.challenge-btn.completed {
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    animation: challengeComplete 0.6s ease;
}

@keyframes challengeComplete {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Community Insights */
.community-insights {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.community-insights h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffd700;
    text-align: center;
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Moon Facts Section */
.moon-facts {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.moon-facts h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #f8f8f8;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.facts-icon {
    width: 28px;
    height: 28px;
    color: #d4af37;
}

.facts-showcase {
    margin-top: 20px;
}

.featured-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.fact-card.featured {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.fact-card.featured::before {
    content: "⭐";
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
}

.show-more-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a2e;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.show-more-btn .chevron-icon {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded .chevron-icon {
    transform: rotate(180deg);
}

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

.facts-grid.hidden {
    display: none;
}

.fact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.fact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.fact-icon {
    width: 32px;
    height: 32px;
    color: #d4af37;
    margin-bottom: 15px;
}

.fact-card h4 {
    color: #f8f8f8;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.fact-card p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #ffd700;
}

.testimonial-text {
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.5;
}

.testimonial-author {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
.footer {
    text-align: center;
    padding: 50px 20px 30px;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #c0c0c0;
    font-size: 1rem;
    line-height: 1.8;
}

.footer p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    width: 16px;
    height: 16px;
}

.footer-links a:hover {
    color: #ffd700;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* About Page Styles */
/* About Page Styles - Removed (about page deleted) */

/* Phases Showcase - Removed (about page deleted) */
/* Phases Showcase - Removed (about page deleted) */

/* Tips Showcase - Removed (about page deleted) */

.featured-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.tip-card.featured {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.tip-card.featured::before {
    content: "⭐";
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
}

.show-more-tips-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a2e;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.show-more-tips-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.show-more-tips-btn .chevron-icon {
    transition: transform 0.3s ease;
}

.show-more-tips-btn.expanded .chevron-icon {
    transform: rotate(180deg);
}

.tips-grid.hidden {
    display: none;
}

.about-section {
    margin: 60px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;
}

.section-icon {
    width: 32px;
    height: 32px;
    color: #d4af37;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #d4af37;
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

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

.content-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.content-card p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 15px;
}

.source {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-style: italic;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 10px;
}

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

.phase-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.phase-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.phase-card h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.phase-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.phase-card p strong {
    color: #ffd700;
}

.historical-content {
    margin-top: 30px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #d4af37, #ffd700, #d4af37);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #d4af37;
    border-radius: 50%;
    border: 3px solid #1a1a2e;
}

.timeline-date {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline-content h4 {
    color: #f0f0f0;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.timeline-content p {
    color: #e0e0e0;
    line-height: 1.7;
}

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

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.tip-icon {
    width: 32px;
    height: 32px;
    color: #d4af37;
    margin-bottom: 15px;
}

.tip-card h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.tip-card p {
    color: #e0e0e0;
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    margin: 60px 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-content h2 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    font-style: italic;
}

.cta-content p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1a1a2e;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-button i {
    width: 20px;
    height: 20px;
}

/* Notification animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive design */
/* Collapsible Sections */
.collapsible {
    margin: 1.5rem 0;
}

.section-header {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.9), rgba(50, 30, 80, 0.9));
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.section-header:hover {
    background: linear-gradient(135deg, rgba(40, 40, 70, 0.9), rgba(60, 40, 90, 0.9));
    border-color: rgba(255, 215, 0, 0.3);
}

.section-header h3 {
    margin: 0;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chevron-icon {
    color: #ffd700;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.collapsible-content {
    background: rgba(20, 20, 40, 0.8);
    border-radius: 0 0 15px 15px;
    padding: 0;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.collapsible-content.expanded {
    max-height: 2000px;
    padding: 2rem;
    opacity: 1;
}

.collapsible.expanded .chevron-icon {
    transform: rotate(180deg);
}

/* Update Moon Facts for collapsible */
.moon-facts.collapsible {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
    text-align: center;
    border: none;
    box-shadow: none;
}

.moon-facts.collapsible .facts-showcase {
    margin-top: 0;
}

/* Update Interactive Section for collapsible */
.interactive-section.collapsible {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}

.interactive-section.collapsible .mood-tracker,
.interactive-section.collapsible .share-section {
    margin: 1.5rem 0;
    background: rgba(20, 20, 40, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.interactive-section.collapsible .mood-tracker h4,
.interactive-section.collapsible .share-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.interactive-section.collapsible .mood-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
    margin: 1rem 0;
}

.interactive-section.collapsible .share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
    margin: 1rem 0;
}

/* Better layout for expanded interactive section */
.interactive-section.collapsible .collapsible-content {
    display: none !important;
}

.interactive-section.collapsible .collapsible-content.expanded {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: rgba(20, 20, 40, 0.8);
    border-radius: 0 0 15px 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-top: none;
}

/* Force hide any duplicate content outside collapsible */
.mood-tracker:not(.interactive-section .mood-tracker),
.share-section:not(.interactive-section .share-section) {
    display: none !important;
}

/* Ensure collapsible content is hidden by default */
.collapsible .collapsible-content {
    display: none !important;
}

.collapsible .collapsible-content.expanded {
    display: block !important;
}

@media (max-width: 768px) {
    .interactive-section.collapsible .collapsible-content.expanded {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* About Page Collapsible Sections */
.about-section.collapsible {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 1.5rem 0;
    border: none;
    box-shadow: none;
}

.collapsible-header {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.9), rgba(50, 30, 80, 0.9));
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.collapsible-header:hover {
    background: linear-gradient(135deg, rgba(40, 40, 70, 0.9), rgba(60, 40, 90, 0.9));
    border-color: rgba(255, 215, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.collapsible-header h2 {
    margin: 0;
    color: #ffd700;
    font-size: 1.3rem;
}

.collapsible-header .section-icon {
    color: #ffd700;
    font-size: 1.3rem;
}

.about-section.collapsible .collapsible-content {
    background: rgba(20, 20, 40, 0.8);
    border-radius: 0 0 15px 15px;
    padding: 0;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-section.collapsible .collapsible-content.expanded {
    max-height: 2000px;
    padding: 2rem;
}

.about-section.collapsible.expanded .chevron-icon {
    transform: rotate(180deg);
}

/* About Page Priority Section */
.about-section.priority-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-section.priority-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    animation: shimmer 2s infinite;
}

.about-section.priority-section .section-header {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.about-section.priority-section .section-header h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin: 0;
}

.about-section.priority-section .section-icon {
    color: #ffd700;
    font-size: 1.8rem;
}

/* Section Navigation */
.section-navigation {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.9), rgba(50, 30, 80, 0.9));
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.section-navigation h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.nav-link-small {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-link-small:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* Priority Section - Above the fold content */
.priority-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.priority-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    animation: shimmer 2s infinite;
}

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

.priority-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.priority-section .challenge-icon {
    color: #ffd700;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    /* Mobile UX Optimizations */
    .collapsible {
        margin: 1rem 0;
    }
    
    .section-header {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .collapsible-content.expanded {
        padding: 1rem;
    }
    
    .priority-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .priority-section h3 {
        font-size: 1.2rem;
    }
    
    /* Reduce spacing on mobile */
    .moon-facts,
    .interactive-section,
    /* Daily challenge removed */
    
    /* Compact grid on mobile */
    .featured-facts {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fact-card {
        padding: 1rem;
    }
    
    /* Smaller buttons on mobile */
    .mood-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .mood-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .share-buttons {
        grid-template-columns: repeat(auto-fit, minmax(45px, 1fr));
        gap: 8px;
        max-width: 100%;
    }
    
    .share-btn {
        padding: 8px;
        font-size: 0.8rem;
        min-height: 45px;
    }
    
    .share-btn.icon-only {
        width: 45px;
        height: 45px;
        padding: 0;
    }
    
    .mood-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .mood-section h3 {
        font-size: 1.3rem;
    }
    
    .mood-buttons {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    
    .mood-btn {
        padding: 10px 6px;
        font-size: 0.75rem;
        min-height: 60px;
    }
    
    .mood-btn i {
        font-size: 1rem;
    }
    
    .social-sharing-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .social-sharing-section h3 {
        font-size: 1.3rem;
    }
    
    .social-sharing-section .section-description {
        font-size: 0.9rem;
    }
    
    /* Daily challenge removed */
    
    /* About Page Mobile Optimizations */
    .section-navigation {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-link-small {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .about-section.priority-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .about-section.priority-section .section-header h2 {
        font-size: 1.4rem;
    }
    
    .about-section.collapsible {
        margin: 1rem 0;
    }
    
    .collapsible-header {
        padding: 1rem;
    }
    
    .collapsible-header h2 {
        font-size: 1.1rem;
    }
    
    .about-section.collapsible .collapsible-content.expanded {
        padding: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .phases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .moon {
        width: 250px;
        height: 250px;
    }
    
    .countdown-timer {
        gap: 20px;
    }
    
    .time-value {
        font-size: 2.5rem;
    }
    
    .info-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .countdown-section {
        padding: 20px;
    }
    
    .interactive-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .social-proof {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .language-switcher {
        position: relative;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        z-index: 1000;
    }
    
    .lang-toggle {
        font-size: 0.8rem;
        padding: 8px 14px;
        min-width: 70px;
    }
    
    .lang-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        z-index: 1001;
        position: absolute;
    }
    
    .lang-dropdown.open {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .moon {
        width: 200px;
        height: 200px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 60px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    /* Social Sharing Section - Extra Small Screens */
    .social-sharing-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .social-sharing-section .header-content {
        flex-direction: column; /* Stack vertically on mobile */
        gap: 10px;
        text-align: center;
    }
    
    .social-sharing-section h3 {
        font-size: 1.2rem;
        margin: 0;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .social-sharing-section .section-description {
        font-size: 0.85rem;
        padding: 0 10px;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .share-buttons {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .share-btn {
        padding: 6px;
        min-height: 40px;
        font-size: 0.75rem;
    }
    
    .share-btn.icon-only {
        width: 40px;
        height: 40px;
        padding: 0;
    }
    
    .social-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Language switcher fixes for extra small screens */
    .language-switcher {
        z-index: 1000;
        position: relative;
    }
    
    .lang-dropdown {
        z-index: 1001;
        position: absolute;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    }
    
    /* Specific adjustments for languages with longer text */
    [lang="ar"] .social-sharing-section h3,
    [lang="ru"] .social-sharing-section h3,
    [lang="hi"] .social-sharing-section h3 {
        font-size: 1.1rem;
        line-height: 1.2;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    [lang="ar"] .social-sharing-section .section-description,
    [lang="ru"] .social-sharing-section .section-description,
    [lang="hi"] .social-sharing-section .section-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* RTL support for Arabic */
    [lang="ar"] .social-sharing-section {
        direction: rtl;
    }
    
    [lang="ar"] .social-sharing-section h3 {
        direction: rtl;
    }
}

/* Moon phase animations */
.moon.new-moon {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #0f0f0f 100%);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.moon.waxing-crescent {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 30%, #2c2c2c 70%, #1a1a1a 100%);
}

.moon.first-quarter {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 50%, #2c2c2c 50%, #1a1a1a 100%);
}

.moon.waxing-gibbous {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 70%, #2c2c2c 30%, #1a1a1a 100%);
}

.moon.full-moon {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 50%, #d0d0d0 100%);
    box-shadow: 
        0 0 60px rgba(255, 255, 255, 0.4),
        inset -20px -20px 50px rgba(0, 0, 0, 0.2);
}

.moon.waning-gibbous {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 30%, #f8f8f8 70%, #e8e8e8 100%);
}

.moon.last-quarter {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #f8f8f8 50%, #e8e8e8 100%);
}

.moon.waning-crescent {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 70%, #f8f8f8 30%, #e8e8e8 100%);
}

/* AdSense Ad Containers */
.ad-container {
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 800px;
    width: 100%;
}

.ad-top {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.ad-middle {
    margin: 2rem auto;
}

.ad-container ins {
    display: block;
    width: 100%;
    height: auto;
}

/* Mobile responsiveness for ads */
@media (max-width: 768px) {
    .ad-container {
        margin: 1.5rem auto;
        padding: 0.8rem;
        max-width: 100%;
    }
    
    .ad-top {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .ad-middle {
        margin: 1.5rem auto;
    }
}

/* Bookmark Helper Styles */
.bookmark-helper {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.bookmark-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.bookmark-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.bookmark-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFE55C 0%, #FFB84D 100%);
}

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

.bookmark-btn i {
    width: 18px;
    height: 18px;
}

.bookmark-instructions {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: left;
}

.instruction-content h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.step span:last-child {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Mobile responsiveness for bookmark helper */
@media (max-width: 768px) {
    .bookmark-helper {
        margin: 1.5rem 0;
        padding: 1.5rem;
    }
    
    .bookmark-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .bookmark-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .instruction-steps {
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
