/* Base Setting */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #0a0a0a;
    --card-bg: rgba(30, 30, 30, 0.8);
    --text-color: #ffffff;
    --accent-gold: #d4af37;
    --accent-gold-gradient: linear-gradient(135deg, #d4af37 0%, #f7ef8a 50%, #d4af37 100%);
    --hover-bg: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.tagline {
    color: #a0a0a0;
    margin: 5px 0 0;
    font-size: 1rem;
    font-weight: 300;
}

/* Links */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out backwards;
}

/* Stagger animation for links */
.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }
.link-card:nth-child(6) { animation-delay: 0.6s; }

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-gold-gradient);
    opacity: 0.1;
    transition: width 0.3s ease;
    z-index: 1;
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

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

.icon-wrapper {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    padding: 6px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

.link-title {
    font-size: 1.1rem;
    font-weight: 600;
    flex-grow: 1;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.arrow-icon {
    width: 12px;
    height: 12px;
    fill: #a0a0a0;
    z-index: 2;
    transition: transform 0.3s ease;
}

.link-card:hover .arrow-icon {
    transform: translateX(5px);
    fill: var(--accent-gold);
}

/* Footer */
footer {
    margin-top: 50px;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* Responsive */
@media (max-width: 480px) {
    .container { padding: 30px 15px; }
    .brand-title { font-size: 1.8rem; }
}
