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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    background: linear-gradient(to bottom, #000000, #1f2937, #000000);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 28rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo */
.logo {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    object-fit: cover;
    animation: scaleIn 0.8s ease-out;
}

/* Title */
.title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeUp 0.6s ease-out 0.3s both;
}

.leaf-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #22c55e;
    flex-shrink: 0;
}

/* Description */
.description {
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 24rem;
    animation: fadeUp 0.6s ease-out 0.4s both;
}

/* Links Container */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Link Cards */
.link-card {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeUp 0.6s ease-out both;
    opacity: 0;
    transform: translateY(20px);
}

.link-card:hover {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}

.link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    width: 100%;
}

.link-item:hover {
    color: #22c55e;
}

.link-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

/* Footer */
.footer {
    color: #6b7280;
    font-size: 0.875rem;
    animation: fadeUp 0.6s ease-out 1.2s both;
}

/* Animations */
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 6rem;
        height: 6rem;
    }
    
    .link-item {
        font-size: 1rem;
        padding: 0.875rem;
    }
}

@media (max-width: 320px) {
    .title {
        font-size: 1.25rem;
    }
    
    .link-item {
        font-size: 0.9rem;
    }
}
