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

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f7fa;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #1a202c;
}

.background-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0%, rgba(240, 245, 255, 0.8) 70%, rgba(230, 240, 250, 1) 100%);
    z-index: -1;
}

.container {
    position: relative;
    padding: 2rem;
    max-width: 1200px;
    text-align: center;
}

.text-container {
    display: flex;
    justify-content: center;
    perspective: 800px;
    margin-bottom: 1.5rem;
}

.letter {
    display: inline-block;
    font-size: 8rem;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    background-clip: text;
    -webkit-background-clip: text;
    position: relative;
    margin: 0 8px;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    animation: appear 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    cursor: pointer;
    user-select: none;
}

.letter:nth-child(1) {
    animation-delay: 0.1s;
}

.letter:nth-child(2) {
    animation-delay: 0.3s;
}

.letter:nth-child(3) {
    animation-delay: 0.5s;
}

.letter:nth-child(4) {
    animation-delay: 0.7s;
}

.letter::after {
    content: attr(data-letter);
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(0, 0, 0, 0.08);
    filter: blur(4px);
    transform: translateZ(-10px);
}

@keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.letter.pulse {
    animation: pulse 4s infinite;
    opacity: 1 !important;
    transform: translateY(0) rotateX(0) !important;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.03);
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    }
}

.coming-soon-container {
    text-align: center;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1.5s;
}

.coming-soon {
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #2d3748;
    font-weight: 300;
    position: relative;
    display: inline-block;
}

.separator {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    margin: 20px auto;
}

.tagline {
    font-weight: 400;
    font-size: 1.2rem;
    color: #4a5568;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.services-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.service-item {
    background: rgba(59, 130, 246, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.local-focus {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    padding: 0 15px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.countdown {
    margin-top: 40px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer-dots {
    position: relative;
    width: 60px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
}

.timer-dots::before,
.timer-dots::after {
    content: "";
    position: absolute;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3b82f6;
    animation: loadingDots 2s infinite ease-in-out;
}

.timer-dots::before {
    left: 0;
}

.timer-dots::after {
    right: 0;
    animation-delay: 1s;
}

@keyframes loadingDots {
    0%, 100% {
        transform: scale(0.7);
        opacity: 0.5;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .letter {
        font-size: 6rem;
        margin: 0 5px;
    }
    
    .coming-soon {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .services-preview {
        gap: 15px;
    }
    
    .service-item {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .local-focus {
        font-size: 0.85rem;
    }
}

div.clickEffect {
  position: fixed;
  box-sizing: border-box;
  border-style: solid;
  border-color: #3b82f6;
  border-radius: 50%;
  animation: clickEffect 0.4s ease-out;
  z-index: 99999;
}

@keyframes clickEffect {
  0% {
    opacity: 1;
    width: 0.5em; height: 0.5em;
    margin: -0.25em;
    border-width: 0.5em;
  }
  100% {
    opacity: 0.2;
    width: 1.5em; height: 1.5em;
    margin: -0.75em;
    border-width: 0.5em/3;
  }
}
