/* CSS Document */
/* Boboduck Brand Palette:
         Text/Base: #111111 (Almost Black)
         Accent 1: #F9D800 (Warm Yellow)
         Accent 2: #870064 (Magenta)
         Accent 3: #743DBC (Purple)
        */


/* FONT DECLARATIONS */
@font-face {
    font-family: 'NeverMindRounded';
    src: url('NeverMindRounded-Regular.woff2') format('woff2'),
         url('NeverMindRounded-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'NeverMindRounded';
    src: url('NeverMindRounded-Medium.woff2') format('woff2'),
         url('NeverMindRounded-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'NeverMindRounded';
    src: url('NeverMindRounded-Bold.woff2') format('woff2'),
         url('NeverMindRounded-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* CUSTOM STYLES */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'NeverMindRounded', sans-serif;
    background-color: #ffffff;
    color: #111111;
    overflow-x: hidden;
}

        /* Soft, airy background with subtle decorative shapes */
        .bg-overlay {
            background: radial-gradient(circle at top left, rgba(116, 61, 188, 0.05) 0%, rgba(255,255,255,1) 40%),
                        radial-gradient(circle at bottom right, rgba(135, 0, 100, 0.05) 0%, rgba(255,255,255,1) 40%);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .content-card {
            text-align: center;
            padding: 3.5rem 2rem;
            max-width: 650px;
            width: 100%;
            background: #ffffff;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
            position: relative;
            z-index: 10;
        }

        /* Elegant Logo Placeholder */
        .logo-placeholder {
            width: 180px;
            height: 180px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem auto;
            position: relative;
            padding: 15px;
            /* The purples used as a soft glowing ring */
            box-shadow: 0 10px 30px rgba(116, 61, 188, 0.15);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .logo-placeholder::before {
            content: '';
            position: absolute;
            top: -3px; left: -3px; right: -3px; bottom: -3px;
            border-radius: 50%;
            background: linear-gradient(135deg, #870064, #743DBC);
            z-index: -1;
            opacity: 0.8;
        }

        .logo-placeholder:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .brand-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }




.badge-custom {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.7em 1.8em;
    background: #F9D800;
    color: #111111;
    border-radius: 50px;
    margin-bottom: 2rem;
    display: inline-block;
}

h1 {
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    color: #111111;
    font-size: 3rem;
}

p.lead {
    font-weight: 500;
    color: #555555;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.divider {
    width: 60px;
    height: 5px;
    border-radius: 10px;
    background: linear-gradient(90deg, #870064 0%, #743DBC 100%);
    margin: 0 auto 2.5rem auto;
    border: none;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fdfdfd;
    color: #111111;
    font-size: 1.3rem;
    margin: 0 12px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.social-links a:hover {
    background: linear-gradient(135deg, #870064, #743DBC);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(116, 61, 188, 0.2);
    border-color: transparent;
}

@media (max-width: 768px) {
    .content-card { padding: 2rem 1.5rem; box-shadow: none; }
    h1 { font-size: 2.2rem; }
}