/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Date Dash Brand Colors */
    --primary-purple-light: #8B5CF6;
    --primary-purple-dark: #7C3AED;
    --logo-orange-light: #FFB84D;
    --logo-orange-dark: #FFA940;
    --accent-white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-purple-dark) 100%);
    color: var(--accent-white);
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

/* Logo Section */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo-wrapper {
    display: inline-block;
    margin-bottom: 0;
    animation: float 3s ease-in-out infinite;
}

.logo-image {
    width: auto;
    height: 180px;
    max-width: 100%;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.4));
    object-fit: contain;
}

.logo-icon {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.logo-text {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--logo-orange-light) 0%, var(--logo-orange-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 184, 77, 0.4);
    letter-spacing: -0.02em;
    margin: 0;
}

/* Main Message */
.main-message {
    margin-bottom: 3rem;
}

.coming-soon {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 140px;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    margin-bottom: 3rem;
}

.available-now {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.app-store-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: #000000;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    background: #1a1a1a;
}

.app-store-button:active {
    transform: translateY(0);
}

.app-store-button.disabled {
    background: rgba(100, 100, 100, 0.5);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.app-store-button.disabled:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background: rgba(100, 100, 100, 0.5);
}

.apple-logo {
    width: 32px;
    height: 32px;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.download-text {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.9;
}

.store-text {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Social Links */
.social-links {
    margin-top: 3rem;
}

.follow-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Animated Background Shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    animation: float-shapes 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 5%;
    animation-delay: 10s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float-shapes {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        height: 140px;
    }

    .logo-icon {
        width: 80px;
        height: 80px;
    }

    .logo-text {
        font-size: 2.5rem;
    }

    .coming-soon {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .features {
        gap: 1rem;
    }

    .feature-item {
        min-width: 100px;
        padding: 0.75rem;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-text {
        font-size: 0.8rem;
    }

    .shape-1, .shape-2, .shape-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .logo-image {
        height: 120px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .coming-soon {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .feature-item {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .app-store-button {
        padding: 0.65rem 1.5rem;
    }

    .apple-logo {
        width: 28px;
        height: 28px;
    }

    .store-text {
        font-size: 1.1rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}
