/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    min-height: 100vh;
    overflow-x: hidden;
    color: #1e293b;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.container {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10;
}

.content {
    text-align: center;
    max-width: 800px;
    z-index: 10;
    position: relative;
}


/* Social Links */
.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out both;
}

.social-link {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    backdrop-filter: none;
    border: 2px solid #d1d5db;
}

.social-link:hover {
    color: #374151;
    transform: translateY(-3px);
    background: #f9fafb;
    border-color: #9ca3af;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Powered By */
.powered-by {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: right;
    animation: fadeInUp 1s ease-out 0.5s both;
    z-index: 1000;
}

.powered-by p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
}

.powered-by a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: #374151;
    text-decoration: underline;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        font-size: 0.9rem;
    }
}

/* Loading animation for better UX */
.content > * {
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
