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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-color: #6366f1;
    --accent-hover: #4f46e5;
    --border-color: #333333;
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Rethink Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
}

.container {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

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

.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 24px;
    display: inline-block;
    position: relative;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain;
    background: black;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px var(--shadow);
}

.logo:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease-out backwards;
}

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

.link-button:nth-child(1) { animation-delay: 0.1s; }
.link-button:nth-child(2) { animation-delay: 0.2s; }
.link-button:nth-child(3) { animation-delay: 0.3s; }
.link-button:nth-child(4) { animation-delay: 0.4s; }
.link-button:nth-child(5) { animation-delay: 0.5s; }

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.link-button:active {
    transform: translateY(0);
}

.icon-wrapper {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.link-button:hover .icon-wrapper {
    background: var(--accent-color);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.link-text {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.arrow-icon {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.link-button:hover .arrow-icon {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer {
    text-align: center;
    padding: 24px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    animation: fadeIn 1s ease-out 0.6s backwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        width: 100px;
        height: 100px;
        padding: 16px;
    }

    .company-name {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .link-button {
        padding: 16px 20px;
    }

    .icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .link-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 16px;
    }

    .logo {
        width: 90px;
        height: 90px;
        padding: 14px;
    }

    .company-name {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .link-button {
        padding: 14px 18px;
        gap: 12px;
    }

    .icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .link-text {
        font-size: 0.95rem;
    }

    .footer {
        font-size: 0.85rem;
        padding: 20px 0;
    }
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}
