:root {
    --bg-color: #050505;
    --accent-color: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-hover: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Luxury Background Effects */
.background-radial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -2;
}

.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 40px 24px;
    text-align: center;
    z-index: 1;
}

header {
    margin-bottom: 48px;
}

.logo-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

h1 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.contact-info a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--text-primary);
}

.tagline {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-top: 15px;
}

.tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Links Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.link-card {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 24px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* AI Site Style Glow Border */
.link-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200% 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 20px;
}

.link-card:hover::after {
    opacity: 1;
    animation: shine-border 2s linear infinite;
}

@keyframes shine-border {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: 0.5s;
}

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

.link-card:hover {
    transform: translateY(-4px);
    background: var(--card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-right: 16px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.link-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.link-card span {
    flex-grow: 1;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 400;
}

.arrow {
    font-size: 0.8rem;
    opacity: 0.3;
    transition: var(--transition);
}

.link-card:hover .arrow {
    transform: translateX(4px);
    opacity: 0.8;
}

footer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--order) * 0.15s + 0.3s);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Mobile Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .link-card {
        padding: 18px 20px;
    }
}
