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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8d5c0 50%, #f0b570 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.content {
    text-align: center;
    color: #2c2c2c;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.animated-text .letter {
    display: inline-block;
    opacity: 0;
    animation: letterAppear 4s infinite;
}

.animated-text .letter:nth-child(1) { animation-delay: 0s; }
.animated-text .letter:nth-child(2) { animation-delay: 0.2s; }
.animated-text .letter:nth-child(3) { animation-delay: 0.4s; }
.animated-text .letter:nth-child(4) { animation-delay: 0.6s; }
.animated-text .letter:nth-child(5) { animation-delay: 0.8s; }
.animated-text .letter:nth-child(6) { animation-delay: 1s; }
.animated-text .letter:nth-child(7) { animation-delay: 1.2s; }
.animated-text .letter:nth-child(8) { animation-delay: 1.4s; }

@keyframes letterAppear {
    0%, 25% { opacity: 0; }
    30%, 70% { opacity: 1; }
    75%, 100% { opacity: 0; }
}

.main-content {
    margin-bottom: 4rem;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.follow-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    background-color: #333;
}

.contact-email a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid #999;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.contact-email a:hover {
    color: #000;
    border-bottom-color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .main-heading {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .description br {
        display: none;
    }
    
    .social-icons {
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .main-heading {
        font-size: 1.5rem;
    }
    
    .social-icons {
        gap: 0.6rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
}