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

body {
    font-family: 'Crimson Pro', serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #c6c6c6 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #2c3e50;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 60px 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

.logo {
    font-size: 3.5rem;
    font-weight: 600;
    color: #34495e;
    margin: 0 auto 2rem auto;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    width: 200px;
}

.tagline {
    font-size: 2rem;
    line-height: 1.6;
    color: #343d46;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.apps-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.store-icons {
    display: flex;
    gap: 0.5rem;
}

.store-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    color: #000;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.store-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.apple-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,<svg viewBox='0 0 24 24' fill='black' xmlns='http://www.w3.org/2000/svg'><path d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z'/></svg>");
}

.play-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,<svg viewBox='0 0 24 24' fill='black' xmlns='http://www.w3.org/2000/svg'><path d='M3,20.5V3.5C3,2.91 3.34,2.39 3.84,2.15L13.69,12L3.84,21.85C3.34,21.61 3,21.09 3,20.5M16.81,15.12L6.05,21.34L14.54,12.85L16.81,15.12M20.16,10.81C20.5,11.08 20.75,11.5 20.75,12C20.75,12.5 20.53,12.92 20.18,13.18L17.89,14.5L15.39,12L17.89,9.5L20.16,10.81M6.05,2.66L16.81,8.88L14.54,11.15L6.05,2.66Z'/></svg>");
}

.footer-links {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.3s forwards;
    margin-top: auto;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #34495e;
}

.separator {
    color: #6c757d;
    font-size: 0.8rem;
}

.app-icon img {
    width: 100%;
}

.app-item:nth-child(2) .app-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.2);
}

.app-item:nth-child(3) .app-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.2);
}

.app-item:nth-child(4) .app-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.2);
}

.app-icon:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.app-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.app-icon:hover::before {
    left: 100%;
}

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

.app-item:nth-child(1) { animation: slideInIcon 0.8s ease-out 1.5s both; }
.app-item:nth-child(2) { animation: slideInIcon 0.8s ease-out 1.7s both; }
.app-item:nth-child(3) { animation: slideInIcon 0.8s ease-out 1.9s both; }
.app-item:nth-child(4) { animation: slideInIcon 0.8s ease-out 2.1s both; }

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

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    .logo {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .apps-container {
        gap: 2rem;
    }

    .app-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}