* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 25%, #FF6347 50%, #FFD700 75%, #FFA500 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    padding: 30px;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    box-shadow: 0 20px 80px rgba(139, 0, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.2);
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 3px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '福';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 40px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.5);
    opacity: 0.9;
}

header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #DC143C;
    position: relative;
}

.banner-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: bannerGlow 2s ease-in-out infinite;
}

@keyframes bannerGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.7); }
}

.banner-icon {
    font-size: 1.5em;
    animation: bounce 1s ease-in-out infinite;
}

.banner-text {
    color: #8B0000;
    font-weight: bold;
    font-size: 1.2em;
    letter-spacing: 3px;
}

header::after {
    content: '🎊 🎊 🎊';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5em;
    animation: float 2s ease-in-out infinite;
}

.lucky-words {
    display: inline-flex;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF5E6 100%);
    border-radius: 20px;
    border: 2px solid #FFD700;
}

.lucky-words span {
    font-size: 1.2em;
    font-weight: bold;
    color: #DC143C;
    animation: luckyGlow 1.5s ease-in-out infinite;
}

.lucky-words span:nth-child(1),
.lucky-words span:nth-child(6) {
    animation-delay: 0s;
}

@keyframes luckyGlow {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.2);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

header h1 {
    font-size: 3.5em;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    position: relative;
    display: inline-block;
}

header h1::before {
    content: '🧧';
    margin-right: 15px;
    font-size: 0.8em;
    animation: shake 1s ease-in-out infinite;
}

header h1::after {
    content: '🧧';
    margin-left: 15px;
    font-size: 0.8em;
    animation: shake 1s ease-in-out infinite 0.5s;
}

@keyframes shake {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.subtitle {
    color: #DC143C;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.3);
}

.hero-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #FFF5E6 0%, #FFFFFF 100%);
    border-radius: 20px;
    margin-bottom: 50px;
    border: 2px solid #FFD700;
    position: relative;
}

.hero-section::before {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2em;
    opacity: 0.4;
}

.hero-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-content h2 {
    font-size: 2.5em;
    color: #DC143C;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 25px;
}

.feature-tags {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tag {
    padding: 12px 28px;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: #FFD700;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(220, 20, 60, 0.3);
    border: 2px solid #FFD700;
    animation: tagPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.tag:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
}

@keyframes tagPulse {
    0%, 100% { box-shadow: 0 4px 10px rgba(220, 20, 60, 0.3), 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 10px rgba(220, 20, 60, 0.3), 0 0 0 10px rgba(255, 215, 0, 0); }
}

@media (max-width: 768px) {
    .tag {
        padding: 8px 18px;
        font-size: 0.9em;
    }
}

.lucky-numbers {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.lucky-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    font-weight: bold;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: #FFD700;
    border-radius: 50%;
    border: 3px solid #FFD700;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    animation: luckyNumber 1s ease-in-out infinite;
}

.lucky-number:nth-child(1) { animation-delay: 0s; }
.lucky-number:nth-child(2) { animation-delay: 0.2s; }
.lucky-number:nth-child(3) { animation-delay: 0.4s; }

@keyframes luckyNumber {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 8px 30px rgba(220, 20, 60, 0.6), 0 0 20px rgba(255, 215, 0, 0.5);
    }
}

@media (max-width: 768px) {
    .lucky-number {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }
}

.features-section {
    margin-bottom: 50px;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #DC143C;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid #FFD700;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.15);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
}

.card-decoration {
    position: absolute;
    font-size: 1.2em;
    opacity: 0.4;
}

.card-decoration.top-left {
    top: 8px;
    left: 8px;
}

.card-decoration.top-right {
    top: 8px;
    right: 8px;
}

.card-decoration.bottom-left {
    bottom: 8px;
    left: 8px;
}

.card-decoration.bottom-right {
    bottom: 8px;
    right: 8px;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 30px 20px;
    }
}

.feature-card.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card::before {
    content: '🎯';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5em;
    opacity: 0.5;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    border-color: #DC143C;
}

.feature-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-card h3 {
    font-size: 1.8em;
    color: #DC143C;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 1.05em;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-status {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

.coming-soon {
    margin-bottom: 50px;
}

.coming-soon h2 {
    text-align: center;
    font-size: 2.5em;
    color: #DC143C;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.coming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.coming-card {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF5E6 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px dashed #DC143C;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.coming-card.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.coming-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    filter: grayscale(50%);
}

.coming-card h3 {
    font-size: 1.5em;
    color: #666;
    margin-bottom: 15px;
}

.coming-card p {
    font-size: 0.95em;
    color: #999;
    margin-bottom: 20px;
    line-height: 1.6;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

.status-badge.coming {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
}

.status-badge.planning {
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
    color: white;
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    border-radius: 25px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.4);
    position: relative;
    overflow: hidden;
    border: 3px solid #FFD700;
}

.cta-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3em;
    opacity: 0.7;
    animation: ctaSwing 2s ease-in-out infinite;
}

.cta-decoration.left {
    left: 30px;
}

.cta-decoration.right {
    right: 30px;
    animation-delay: 1s;
}

@keyframes ctaSwing {
    0%, 100% { transform: translateY(-50%) rotate(-15deg); }
    50% { transform: translateY(-50%) rotate(15deg); }
}

@media (max-width: 768px) {
    .cta-decoration {
        font-size: 2em;
    }

    .cta-decoration.left {
        left: 15px;
    }

    .cta-decoration.right {
        right: 15px;
    }

    .cta-section {
        padding: 40px 20px;
    }
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.lucky-cards {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
}

.lucky-card {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    animation: luckyCard 1.5s ease-in-out infinite;
}

.lucky-card:nth-child(1) { animation-delay: 0s; }
.lucky-card:nth-child(2) { animation-delay: 0.2s; }
.lucky-card:nth-child(3) { animation-delay: 0.4s; }
.lucky-card:nth-child(4) { animation-delay: 0.6s; }

@keyframes luckyCard {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.15) rotate(10deg);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.7), 0 0 25px rgba(255, 215, 0, 0.5);
    }
}

@media (max-width: 768px) {
    .lucky-card {
        width: 55px;
        height: 55px;
        font-size: 1.5em;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.2em;
    color: white;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    padding: 20px 50px;
    font-size: 1.4em;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.cta-icon {
    font-size: 1.2em;
    animation: bounce 1s ease-in-out infinite;
}

footer {
    text-align: center;
    padding: 30px;
    border-top: 2px solid #FFE8EB;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-text {
    color: #DC143C;
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 2px;
}

.footer-copy {
    color: #999;
    font-size: 0.95em;
}

.footer-disclaimer {
    color: #666;
    font-size: 0.9em;
    font-style: italic;
}

/* 装饰元素 */
.decoration {
    position: fixed;
    font-size: 2.5em;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
    animation: decorationFloat 3s ease-in-out infinite;
}

.decoration-left {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.decoration-right {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.decoration-top-left {
    left: 30px;
    top: 80px;
    animation-delay: 0.5s;
}

.decoration-top-right {
    right: 30px;
    top: 80px;
    animation-delay: 2s;
}

.decoration-bottom-left {
    left: 30px;
    bottom: 30px;
    animation-delay: 1s;
}

.decoration-bottom-right {
    right: 30px;
    bottom: 30px;
    animation-delay: 2.5s;
}

.floating-icon {
    position: fixed;
    font-size: 1.5em;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    animation: floatingIcon 4s ease-in-out infinite;
}

.f1 { top: 15%; left: 15%; animation-delay: 0s; }
.f2 { top: 25%; right: 20%; animation-delay: 0.7s; }
.f3 { top: 45%; left: 25%; animation-delay: 1.4s; }
.f4 { top: 60%; right: 15%; animation-delay: 2.1s; }
.f5 { bottom: 25%; left: 20%; animation-delay: 2.8s; }
.f6 { bottom: 20%; right: 25%; animation-delay: 3.5s; }

@keyframes floatingIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-40px) rotate(180deg) scale(1);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes decorationFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@media (max-width: 768px) {
    .decoration {
        font-size: 1.5em;
    }

    .decoration-left {
        left: 10px;
    }

    .decoration-right {
        right: 10px;
    }

    .decoration-top-left {
        left: 15px;
        top: 60px;
    }

    .decoration-top-right {
        right: 15px;
        top: 60px;
    }

    .decoration-bottom-left {
        left: 15px;
        bottom: 20px;
    }

    .decoration-bottom-right {
        right: 15px;
        bottom: 20px;
    }

    .floating-icon {
        font-size: 1.2em;
        display: none;
    }
}

/* 响应式设计 */
@media (min-width: 1400px) {
    .container {
        padding: 50px;
    }

    header h1 {
        font-size: 4em;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .coming-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .coming-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coming-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .coming-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    header h1 {
        font-size: 2.5em;
    }
}

@media (max-width: 767px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px 15px;
        border-radius: 20px;
    }

    header h1 {
        font-size: 2em;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 0.9em;
        letter-spacing: 1px;
    }

    .hero-icon {
        font-size: 3em;
    }

    .hero-content h2 {
        font-size: 1.6em;
    }

    .hero-section {
        padding: 30px 20px;
    }

    .features-grid,
    .coming-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card,
    .coming-card {
        padding: 25px 20px;
    }

    .feature-card h3,
    .coming-card h3 {
        font-size: 1.3em;
    }

    .cta-content h2 {
        font-size: 1.6em;
    }

    .cta-content p {
        font-size: 1em;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1em;
        width: 100%;
        max-width: 300px;
    }

    .decoration {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }

    .container {
        padding: 15px 10px;
        border-radius: 15px;
    }

    header h1 {
        font-size: 1.6em;
    }

    .subtitle {
        font-size: 0.85em;
    }

    .banner-decoration {
        padding: 8px 20px;
    }

    .banner-text {
        font-size: 1em;
        letter-spacing: 2px;
    }

    .banner-icon {
        font-size: 1.2em;
    }

    .hero-icon {
        font-size: 2.5em;
    }

    .hero-content h2 {
        font-size: 1.4em;
    }

    .hero-content p {
        font-size: 0.95em;
    }

    .hero-section {
        padding: 25px 15px;
    }

    .feature-tags {
        gap: 10px;
    }

    .tag {
        padding: 8px 18px;
        font-size: 0.85em;
    }

    .lucky-number {
        width: 45px;
        height: 45px;
        font-size: 1.8em;
    }

    .lucky-cards {
        gap: 10px;
    }

    .lucky-card {
        width: 50px;
        height: 50px;
        font-size: 1.4em;
    }

    .feature-icon,
    .coming-icon {
        font-size: 3em;
    }

    .feature-card,
    .coming-card {
        padding: 20px 15px;
    }

    .feature-card h3,
    .coming-card h3 {
        font-size: 1.2em;
    }

    .feature-card p,
    .coming-card p {
        font-size: 0.9em;
    }

    .cta-section {
        padding: 30px 15px;
    }

    .cta-content h2 {
        font-size: 1.4em;
    }

    .cta-content p {
        font-size: 0.9em;
        line-height: 1.6;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.95em;
    }

    .cta-icon {
        font-size: 1em;
    }

    footer {
        padding: 20px 15px;
    }

    .footer-text {
        font-size: 1em;
    }

    .footer-copy {
        font-size: 0.85em;
    }

    .footer-disclaimer {
        font-size: 0.8em;
    }

    .footer-icon {
        font-size: 1.3em;
    }

    .footer-decoration {
        gap: 8px;
    }
}

@media (min-width: 1401px) {
    .hero-section {
        padding: 50px;
    }

    .features-grid {
        gap: 35px;
    }

    .coming-grid {
        gap: 35px;
    }
}
