:root {
    --bg-color: #283673; /* Requested navy */
    --accent-gold: #bca16d; /* Lighter, more muted gold */
    --text-cream: #f4efdc; /* Warm cream */
    --glass-bg: rgba(255, 255, 255, 0.05); /* Slightly visible glass */
    --glass-border: rgba(188, 161, 109, 0.6); /* Gold border for cards */
    --hover-bg: rgba(255, 255, 255, 0.09);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-cream);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}


.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Header & Logo */
.header {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.logo-container {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Link Cards */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.link-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.1rem;
    text-decoration: none;
    color: var(--text-cream);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.link-card.featured {
    margin-top: 1.25rem;
}

.link-card:hover {
    transform: scale(1.02);
    background: var(--hover-bg);
}

.badge-container {
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.badge {
    background: #23294c; /* Slightly lighter than bg to stand out or exactly bg */
    border: 1px solid var(--glass-border);
    color: var(--accent-gold);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.2rem 1.25rem;
    border-radius: 1rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    margin-right: 1.25rem;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.03);
}

.thin-icon {
    width: 24px;
    height: 24px;
    stroke-width: 1.25; /* Thinner icons like the image */
    color: var(--text-cream);
}

.title {
    font-size: 1.15rem;
    font-weight: 500;
    flex-grow: 1;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.socials {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--text-cream);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    background: var(--hover-bg);
}

.social-svg {
    width: 22px;
    height: 22px;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(244, 239, 220, 0.7);
    text-align: center;
    font-weight: 400;
}
