* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body { overflow-x: hidden; }
body {
    min-height: 100vh !important;
    min-height: 100svh;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh !important;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.coming-soon {
    font-size: 1.2rem;
    color: #777;
}

.dots span {
    opacity: 0;
    animation: blink 1.5s infinite;
}

.dots span:nth-child(1) {
    animation-delay: 0s;
}

.dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    .coming-soon {
        font-size: 1rem;
    }

    header img {
        max-width: 130px;
    }
}

header {
    padding: 16px;
}

img.phone {
    max-height: 750px;
}

footer {
    font-size: 0.9em;
    color: #555;
    background-color: #e0e0e0;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

.main-container {
    flex: 1 0 auto;
}

.store-badges img {
    height: 56px;
}

.font-primary {
    color: #303e41;
}

@media (prefers-reduced-motion: reduce) {
  .dots span { animation: none !important; opacity: 1; }
}

@media (max-width: 576px) {
    .store-badges img {
        height: 48px;
    }
}

@media (max-width: 769px) {
    img.logo {
        height: 124px;
    }
}
