/* Spring Festival Assistant - Unified CSS Styles */

/* Root Variables */
:root {
    --primary-red: #D32F2F;
    --primary-gold: #FFD700;
    --secondary-red: #B71C1C;
    --secondary-gold: #FFA000;
    --text-white: #FFFFFF;
    --text-gold: #FFE082;
    --text-light: #F5F5F5;
    --text-dark: #333333;
    --bg-dark: #0A0000;
    --bg-gradient: linear-gradient(135deg, #0A0000 0%, #1A0A0A 50%, #0A0000 100%);
    --card-bg: rgba(30, 30, 30, 0.9);
    --card-border: 2px solid rgba(255, 215, 0, 0.6);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.4);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Particles Container */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation */
.navbar-custom {
    background: rgba(10, 0, 0, 0.95);
    border-bottom: 2px solid var(--primary-gold);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: var(--shadow-gold);
}

.navbar-brand {
    color: var(--text-gold) !important;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.lantern-nav {
    display: inline-block;
    animation: swing 3s ease-in-out infinite;
    transform-origin: top center;
}

.nav-btn {
    color: var(--text-light) !important;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem !important;
    margin: 0 0.5rem;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.nav-btn:hover {
    color: var(--primary-gold) !important;
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.nav-btn.active {
    color: var(--primary-gold) !important;
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.navbar-toggler {
    border-color: var(--primary-gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 215, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 80px auto 0;
    min-height: calc(100vh - 200px);
}

/* Tab Content */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.header {
    margin-bottom: 60px;
    position: relative;
}

.lantern-left,
.lantern-right {
    font-size: 4rem;
    display: inline-block;
    animation: swing 3s ease-in-out infinite;
    transform-origin: top center;
}

.lantern-left {
    margin-right: 20px;
}

.lantern-right {
    margin-left: 20px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--text-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.lantern-icon {
    display: inline-block;
    animation: swing 3s ease-in-out infinite;
    transform-origin: top center;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.date-highlight,
.year-highlight {
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: bold;
    margin-bottom: 2rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.6), transparent);
    border-radius: 10px;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Countdown Section */
.countdown-section {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 20px;
    background: 
        radial-gradient(circle at 50% 50%, rgba(211, 47, 47, 0.2) 0%, transparent 70%),
        rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: var(--shadow-gold);
}

.countdown-title {
    font-size: 2.5rem;
    color: var(--text-gold);
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.time-value {
    font-size: 5rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    background: rgba(20, 20, 20, 0.8);
    padding: 20px 30px;
    border-radius: 15px;
    border: 3px solid var(--primary-gold);
    margin-bottom: 10px;
    animation: pulse 1s ease-in-out infinite;
}

.time-label {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.time-separator {
    font-size: 5rem;
    color: var(--primary-gold);
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.countdown-message {
    font-size: 1.8rem;
    color: var(--text-gold);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* Horse Info Section */
.horse-info-section {
    margin-bottom: 80px;
}

.horse-card {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-gold);
    margin-bottom: 1.5rem;
}

.horse-card .card-title {
    color: var(--primary-gold);
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    margin-bottom: 2rem;
}

.info-block h3 {
    color: var(--text-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.info-block ul {
    list-style: none;
    padding: 0;
}

.info-block li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.info-block li:last-child {
    border-bottom: none;
}

/* Traditions Section */
.traditions-section {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 50px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 215, 0, 0.6);
    font-weight: 700;
}

.traditions-grid {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.traditions-grid > div {
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px);
    min-width: 250px;
}

.tradition-card {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    height: 100%;
    width: 100%;
    max-width: 280px;
}

.tradition-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.tradition-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: bounce 2s infinite;
}

.tradition-card h3 {
    color: var(--text-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.tradition-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Greetings Section */
.greetings-section {
    margin-bottom: 80px;
}

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

.greeting-card {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    margin-bottom: 40px;
}

.greeting-text {
    font-size: 1.6rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Greetings Info */
.greetings-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-gold);
}

.info-card h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.info-list li:last-child {
    border-bottom: none;
}

.btn-change-greeting {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--bg-dark);
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    padding: 0.8rem 2.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-change-greeting:hover {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 100%);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* Hero Section (Fortune) */
.hero-section {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    background: 
        radial-gradient(circle at 20% 50%, rgba(211, 47, 47, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        var(--bg-gradient);
}

/* Input Section */
.input-section {
    max-width: 600px;
    margin: 2rem auto;
}

.input-group-lg {
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.input-group-text {
    background: var(--primary-red);
    color: var(--text-gold);
    font-size: 1.5rem;
    border: none;
}

.form-control {
    background: rgba(20, 20, 20, 0.9);
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.form-control:focus {
    background: rgba(30, 30, 30, 0.95);
    color: var(--text-light);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-control::placeholder {
    color: rgba(245, 245, 245, 0.6);
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--bg-dark);
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 100%);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* Fireworks Animation */
.fireworks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.firework {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: explode 3s infinite;
}

.firework:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.firework:nth-child(2) {
    left: 50%;
    animation-delay: 1s;
}

.firework:nth-child(3) {
    left: 90%;
    animation-delay: 2s;
}

/* Results Section */
.results-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.card {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-gold);
    margin-bottom: 1.5rem;
}

.card h3,
.card h4 {
    color: var(--text-light);
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.card p {
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.zodiac-card {
    border: 2px solid var(--primary-gold);
}

.zodiac-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.zodiac-name {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.zodiac-english {
    font-size: 1.3rem;
    color: var(--text-gold);
    text-transform: uppercase;
}

.fortune-overall {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.overall-label {
    font-size: 1.2rem;
    color: var(--text-gold);
}

.stars {
    font-size: 1.6rem;
    color: var(--primary-gold);
}

.fortune-card {
    border-left: 4px solid var(--primary-gold);
    transition: transform 0.3s ease;
}

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

.fortune-card.career {
    border-left-color: #4CAF50;
}

.fortune-card.love {
    border-left-color: #E91E63;
}

.fortune-card.health {
    border-left-color: #2196F3;
}

.fortune-card.wealth {
    border-left-color: #FF9800;
}

.fortune-text {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

/* Lucky Elements */
.lucky-card {
    border: 2px solid var(--primary-gold);
    text-align: center;
}

.lucky-item {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease;
}

.lucky-item:hover {
    transform: scale(1.05);
    background: rgba(255, 215, 0, 0.2);
}

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

.lucky-label {
    font-size: 1rem;
    color: var(--text-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.lucky-value {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

/* Compatibility Section */
.compatibility-section {
    padding: 60px 20px;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.compatibility-card {
    max-width: 800px;
    margin: 2rem auto;
}

.form-select {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid var(--primary-gold);
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 0.75rem;
    font-weight: 500;
}

.form-select:focus {
    background: rgba(30, 30, 30, 0.95);
    color: var(--text-light);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.form-select option {
    background: var(--bg-dark);
    color: var(--text-light);
    font-weight: 500;
}

.form-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.heart-icon {
    font-size: 3rem;
    animation: heartbeat 1.5s infinite;
}

.compatibility-result {
    max-width: 800px;
    margin: 2rem auto;
    animation: fadeInUp 0.5s ease;
}

.compatibility-score {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin: 1rem 0;
}

.compatibility-icons {
    font-size: 2.5rem;
    margin: 1rem 0;
}

/* Horse Section */
.horse-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 80px;
}

.horse-traits,
.horse-predictions {
    list-style: none;
    padding: 0;
}

.horse-traits li,
.horse-predictions li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.horse-traits li:last-child,
.horse-predictions li:last-child {
    border-bottom: none;
}

.famous-people {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.famous-people span {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    padding: 0.6rem 1.6rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    transition: transform 0.3s ease;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.famous-people span:hover {
    transform: scale(1.1);
}

/* Actions Section */
.actions-section {
    text-align: center;
    margin-bottom: 60px;
}

.btn-share,
.btn-fullscreen {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--text-gold);
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid var(--primary-gold);
    padding: 1rem 3rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-share:hover,
.btn-fullscreen:hover {
    background: linear-gradient(135deg, var(--secondary-red) 0%, var(--primary-red) 100%);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.btn-outline-light {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-outline-light:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Footer */
.footer {
    padding: 40px 20px;
    border-top: 2px solid var(--primary-gold);
    text-align: center;
    margin-top: 80px;
}

.footer p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.footer-text {
    color: var(--primary-gold) !important;
    font-weight: 700;
    font-size: 1.3rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
    }
}

@keyframes swing {
    0%, 100% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
}

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

@keyframes explode {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(2);
        opacity: 0.8;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

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

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

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

/* Utility Classes */
.d-none {
    display: none !important;
}

.text-gold {
    color: var(--primary-gold) !important;
}

.text-warning {
    color: var(--primary-gold) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .nav-btn {
        font-size: 1rem;
        padding: 0.5rem 1rem !important;
        margin: 0.3rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .lantern-left,
    .lantern-right {
        font-size: 2.5rem;
    }
    
    .date-highlight,
    .year-highlight {
        font-size: 1.3rem;
    }
    
    .countdown-title {
        font-size: 1.8rem;
    }
    
    .time-value {
        font-size: 3rem;
        padding: 15px 20px;
        min-width: 80px;
    }
    
    .time-separator {
        font-size: 3rem;
    }
    
    .time-label {
        font-size: 1.2rem;
    }
    
    .countdown-message {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tradition-icon {
        font-size: 2.5rem;
    }
    
    .greeting-text {
        font-size: 1.3rem;
    }
    
    .zodiac-icon {
        font-size: 4rem;
    }
    
    .zodiac-name {
        font-size: 2rem;
    }
    
    .compatibility-score {
        font-size: 2.5rem;
    }
    
    .famous-people {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-share,
    .btn-fullscreen {
        font-size: 1rem;
        padding: 0.8rem 2rem;
        margin: 0.5rem;
    }
}