@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', sans-serif;
    }

    body {
        background-color: white;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* Header Styles */
    header {
        padding: 1.5rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.25rem;
        font-weight: 600;
    }

    .logo img {
        width: 100%;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        color: #4b5563;
        transition: color 0.3s ease;
    }

    .social-links a:hover {
        color: #111827;
    }

    /* Main Content Styles */
    main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 4rem 0;
        gap: 2rem;
    }

    .content {
        flex: 1;
    }

    .title {
        font-size: 7rem;
        font-weight: 500;
        line-height: 1;
        margin-bottom: 2rem;
    }

    .title-bold {
        font-size: 7rem;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 2rem;
    }

    .title-bold {
        color: #ff8585;
        margin-bottom: 50px;
    }

    .countdown {
        display: flex;
        gap: 2rem;
        margin-top:50px;
    }

    .countdown-item {
        font-size: 3.75rem;
        font-weight: 700;
        line-height: 1;
    }

    .countdown-label {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }

    .app-preview {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .app-preview img {
        width: 90%;
        height: auto;
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
        main {
            flex-direction: column;
            padding: 3rem 0;
        }

        .title {
            font-size: 4rem;
        }

        .app-preview {
            justify-content: center;
            margin-top: 2rem;
        }
    }

    @media (max-width: 640px) {
        .social-links {
            gap: 0.75rem;
        }

        .title {
            font-size: 3rem;
        }

        .countdown-item {
            font-size: 2.5rem;
        }

        .countdown-label {
            font-size: 1.25rem;
        }
    }
