/* Base Styles & CSS Variables */
:root {
    /* Colors extracted from PRED screenshots */
    --primary-mint: #3ac09c;
    /* Mint green from buttons */
    --primary-mint-hover: #2e9f80;
    --primary-blue: #2c85b1;
    /* Blue from PRED logo text part 1 */
    --dark-blue: #183f66;
    /* Dark blue from text/buttons */
    --light-bg: #f5f8fa;
    /* Light grey/blue background */
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;

    /* Typography */
    --font-main: 'Montserrat', sans-serif;

    /* Layout */
    --max-width: 600px;
    --border-radius: 30px;
    /* Pill shape */
}

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

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 2rem 1rem;

    /* Optional: Subtle background pattern or gradient based on their slider background */
    background: linear-gradient(135deg, #f5f8fa 0%, #e2eff5 100%);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

/* Header & Logo */
.profile-header {
    margin-bottom: 2rem;
    width: 100%;
}

.logo-container {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

/* Logo Image Styling */
.main-logo {
    max-width: 200px;
    /* Adjust this value if needed based on the logo proportions */
    height: auto;
    display: block;
    margin: 0 auto;
}

.description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 0 1rem;
}

/* Links Section */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    background-color: var(--white);
    color: var(--dark-blue);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 2px solid transparent;
}

.link-btn .icon {
    position: absolute;
    left: 20px;
    font-size: 1.2rem;
    color: var(--dark-blue);
    transition: color 0.3s ease;
}

/* Hover Effects */
.link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 63, 102, 0.1);
    border-color: var(--primary-mint);
}

.link-btn:hover .icon {
    color: var(--primary-mint);
}

/* Primary Button Styling (Mint Green) */
.primary-btn {
    background-color: var(--primary-mint);
    color: var(--white);
    margin-top: 1rem;
}

.primary-btn .icon {
    color: var(--white);
}

.primary-btn:hover {
    background-color: var(--primary-mint-hover);
    border-color: var(--primary-mint-hover);
    box-shadow: 0 8px 20px rgba(58, 192, 156, 0.3);
}

.primary-btn:hover .icon {
    color: var(--white);
}

/* Footer */
.footer {
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .logo-placeholder {
        padding: 10px 20px;
    }

    .logo-text h1 {
        font-size: 1.8rem;
    }

    .link-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .link-btn .icon {
        left: 15px;
    }
}