* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --light-blue: #33A8FF;
    --medium-blue: #007BFF;
    --vibrant-orange: #FF9900;
    --dark-bg: #2F4F4F;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-gray: #6c757d;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    height: 100vh;
    overflow: hidden;
    position: relative;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Modern Background Pattern */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(51, 168, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 153, 0, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 123, 255, 0.02) 0%, rgba(255, 153, 0, 0.02) 100%);
    opacity: 1;
}

/* Logo Container */
.logo-container {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.squirrel-logo {
    display: inline-block;
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
    position: relative;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.logo-image {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 123, 255, 0.15));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 15px;
    background: linear-gradient(135deg, var(--medium-blue), var(--vibrant-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-blue {
    color: var(--medium-blue);
}

.text-orange {
    color: var(--vibrant-orange);
}

/* Content */
.content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    width: 100%;
}

.coming-soon-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--medium-blue), var(--vibrant-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0;
    max-width: 1000px;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out both;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--medium-blue), var(--vibrant-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--vibrant-orange);
    box-shadow: 0 20px 40px rgba(255, 153, 0, 0.15);
}

.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-blue), var(--medium-blue));
    border-radius: 16px;
    color: var(--white);
    font-size: 1.6rem;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--vibrant-orange), #ffaa33);
    box-shadow: 0 12px 30px rgba(255, 153, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(51, 168, 255, 0.1), rgba(255, 153, 0, 0.1));
    border-radius: 15px;
    color: var(--medium-blue);
    font-size: 1.5rem;
    opacity: 0.4;
    animation: floatAround 20s infinite ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 5s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

.floating-icon:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(40px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(30px, 40px) rotate(270deg) scale(1.05);
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .logo-container {
        margin-bottom: 25px;
    }
    
    .logo-image {
        width: 120px;
    }
    
    .logo-text {
        font-size: 2.5rem;
        margin-top: 10px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 120px;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}
