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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

/* Instruction Card */
.instruction-card {
    background-color: #f5f5f5;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.instruction-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #1a1a1a;
    text-align: left;
}

.inline-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin: 0 2px;
}

.dots-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 10px;
    letter-spacing: -1px;
    vertical-align: middle;
    margin: 0 2px;
    color: #666;
}

.highlight {
    color: #0095F6;
    font-weight: 500;
}

/* App Icon */
.app-icon-container {
    margin-bottom: 24px;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Hold Text */
.hold-text {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 12px;
}

/* Arrow Animation */
.arrow-container {
    margin-bottom: 20px;
}

.arrow {
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0095F6;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 80px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    cursor: pointer;
}

.download-btn:hover {
    background-color: #0086de;
}

.download-btn:active {
    transform: scale(0.98);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .instruction-card {
        padding: 16px 20px;
        margin-bottom: 40px;
    }

    .instruction-card p {
        font-size: 14px;
    }

    .app-icon {
        width: 100px;
        height: 100px;
    }

    .hold-text {
        font-size: 18px;
    }

    .download-btn {
        padding: 14px 60px;
        font-size: 15px;
    }
}

