:root {
    --bg-color: #0f0f13;
    --card-bg: rgba(255, 255, 255, 0.1);
    --card-border: rgba(255, 255, 255, 0.1);
    --card-hover-bg: rgba(59, 130, 246, 0.1);
    /* Blue tint on hover */
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --accent-color: #3B82F6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Optional: Subtle gradient background */
    background: radial-gradient(circle at 50% 10%, #1a1a20 0%, #0f0f13 100%);
}

.container {
    max-width: 600px;
    /* Constrained width for Link Tree style */
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header & Logo */
header {
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
}

.header-image-container {
    width: 100%;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 12px;
    /* Optional: adds a nice touch, can remove if strictly full full width requested */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Link Cards */
main {
    width: 100%;
    flex: 1;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    height: 65px;
    /* Fixed height for consistency */
}

.link-card:hover {
    background: var(--card-hover-bg);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.card-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Pinned Section & Merch Card */
.pinned-section {
    width: 100%;
    margin-bottom: 1.5rem;
}

.merch-card {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(0, 0, 0, 0));
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.merch-card:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.merch-icon {
    font-size: 1.5rem;
}

/* Section Title */
.section-title {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title::before,
.section-title::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background-color: var(--card-border);
}

/* Social Icons - Brand Colors */
.card-icon-wrapper svg {
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease;
}

.icon-youtube {
    fill: #FF0000;
}

.icon-tiktok {
    fill: #FFFFFF;
}

/* White for dark theme, or #ff0050/00f2ea split */
.icon-facebook {
    fill: #1877F2;
}

.icon-instagram {
    fill: url(#instagram-gradient);
}

/* SVG gradient would be best, but simple fill fallback: */
.icon-instagram {
    fill: #E1306C;
}

/* Solid fallback */

/* Override specific hover behavior if needed, or keep unified gold hover */
.link-card:hover .icon-youtube {
    fill: #FF0000;
}

.link-card:hover .icon-tiktok {
    fill: #FFFFFF;
}

.link-card:hover .icon-facebook {
    fill: #1877F2;
}

.link-card:hover .icon-instagram {
    fill: #E1306C;
}

.card-text {
    flex: 1;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-align: left;
    /* Ensure text aligns left next to icon */
}

.card-arrow {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-left: auto;
}

.card-profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--card-border);
    flex-shrink: 0;
    margin-left: 1rem;
}

.card-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.link-card:hover .card-profile-img {
    border-color: var(--accent-color);
}

/* Footer */
footer {
    margin-top: 3rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    width: 100%;
}

.social-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Mobile Adjustments (Default is already mobile-first, but explicit checks) */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }

    .card-text {
        font-size: 1rem;
    }

    .link-card {
        padding: 0.9rem 1.2rem;
        border-radius: 40px;
        /* More pill-shaped on mobile looks nice? Or stick to rounded rect */
    }
}

/* Coming Soon Page Styles */
.coming-soon-container {
    text-align: center;
    padding: 2rem 0;
    max-width: 400px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    /* Optional glow */
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.coming-soon-container h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.coming-soon-container h2 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.coming-soon-container p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.return-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.return-button:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}