/* ================================================================
   FONTS
   ================================================================ */

@font-face {
    font-family: 'Inter';
    src: local('Inter Regular'), local('Inter-Regular'),
        url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter Italic'), local('Inter-Italic'),
        url('../fonts/Inter-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: fallback;
}


/* ================================================================
   RESET
   ================================================================ */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body       { line-height: 1; }
ol, ul     { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }

*, *:before, *:after { box-sizing: border-box; }


/* ================================================================
   ROOT & BASE
   ================================================================ */

:root {
    --background-height: 100vh;
    --viewport-height:   100vh;
}

/* Fluid base font — everything in em scales with this.
   Column is ~40% of vw on desktop, so 1.8vw ≈ constant visual size. */
html {
    font-size: clamp(13px, 1.8vw, 20px);
}

body {
    -webkit-text-size-adjust: none;
    line-height: 1;
    min-height: var(--viewport-height);
    min-width: 320px;
    overflow-x: hidden;
    word-wrap: break-word;
    background-color: #181A1B;
}

/* Full-viewport background layer */
body:before {
    background-attachment: scroll;
    content: '';
    display: block;
    height: var(--background-height);
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 0;
    background-image: url("../res/background.svg");
    background-size: auto 100%;
    background-position: center;
    background-repeat: repeat-x;
}


/* ================================================================
   TYPOGRAPHY
   ================================================================ */

u   { text-decoration: underline; }
s   { text-decoration: line-through; }
em  { font-style: italic; }
strong { color: inherit; font-weight: bolder; }
sub { font-size: smaller; vertical-align: sub; }
sup { font-size: smaller; vertical-align: super; }

mark {
    background-color: rgba(144, 144, 144, 0.25);
    color: inherit;
}

a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.25s ease;
}
a[onclick]:not([href]) { cursor: pointer; }

code {
    background-color: rgba(144, 144, 144, 0.25);
    border-radius: 0.25em;
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-size: 0.9em;
    font-weight: normal;
    letter-spacing: 0;
    margin: 0 0.25em;
    padding: 0.25em 0.5em;
    text-indent: 0;
}

spoiler-text {
    -webkit-text-stroke: 0;
    background-color: rgba(32, 32, 32, 0.75);
    text-shadow: none;
    color: transparent;
    cursor: pointer;
    transition: color 0.1s ease-in-out;
}
spoiler-text.active { color: #ffffff; cursor: text; }

unloaded-script { display: none; }

input::-moz-focus-inner { border: 0; padding: 0; }
input[type="text"],
input[type="email"],
select, textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}


/* ================================================================
   PAGE LAYOUT — centered column
   ================================================================ */

#main {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    text-align: center;
    z-index: 1;
}

/* The column. --col-width is overridden per breakpoint below. */
#main > .inner {
    --col-width:           100%;
    --padding-horizontal:  1.5rem;
    --padding-vertical:    2rem;
    --spacing:             0.875rem;

    width: var(--col-width);
    max-width: 100%;
    min-width: 320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

/* Breakpoints — slim down the column as the screen gets wider */
@media (min-width: 576px)  { #main > .inner { --col-width: 92%;  } }
@media (min-width: 768px)  { #main > .inner { --col-width: 75%;  } }
@media (min-width: 992px)  { #main > .inner { --col-width: 55%;  } }
@media (min-width: 1200px) { #main > .inner { --col-width: 42%;  } }
@media (min-width: 1600px) { #main > .inner { --col-width: 36%;  } }

/* Child spacing */
#main > .inner > *              { margin-top: var(--spacing); margin-bottom: var(--spacing); }
#main > .inner > :first-child   { margin-top:    0 !important; }
#main > .inner > :last-child    { margin-bottom: 0 !important; }

/* .full — bleeds past horizontal padding (for full-width section backgrounds) */
#main > .inner > .full {
    margin-left: calc(var(--padding-horizontal) * -1);
    width:     calc(100% + var(--padding-horizontal) * 2 + 0.4725px);
    max-width: calc(100% + var(--padding-horizontal) * 2 + 0.4725px);
}
#main > .inner > .full:first-child {
    margin-top: calc(var(--padding-vertical) * -1) !important;
}
#main > .inner > .full:last-child {
    margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

/* .full.screen — contained within the column (NOT 100vw) */
#main > .inner > .full.screen {
    border-radius: 0 !important;
    width:     calc(100% + var(--padding-horizontal) * 2 + 0.4725px);
    max-width: calc(100% + var(--padding-horizontal) * 2 + 0.4725px);
    margin-left: calc(var(--padding-horizontal) * -1);
    position: relative;
    left: auto;
    right: auto;
}

body.is-instant #main,
body.is-instant #main > .inner > *,
body.is-instant #main > .inner > section > * {
    transition: none !important;
}


/* ================================================================
   CLIPBOARD DIALOG  (unchanged from original)
   ================================================================ */

@keyframes clipboard-dialog-content-copied {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

dialog.clipboard {
    --color-background:         #FFFFFF;
    --color-content-background: #F5F5F5;
    --color-content-border:     #D3D3D3;
    --color-content-text:       #000000;
    --color-text:               #808080;
    --border-radius: 9px;
    align-items: center;
    background: transparent;
    border: 0;
    display: flex;
    height: 100%;
    justify-content: center;
    max-height: 100%;
    max-width: 100%;
    min-height: 0;
    min-width: 0;
    padding: 0;
    width: 100%;
}

@media (prefers-color-scheme: dark) {
    dialog.clipboard {
        --color-background:         #000000;
        --color-content-background: #222222;
        --color-content-border:     #444444;
        --color-content-text:       #FFFFFF;
        --color-text:               #666666;
    }
}

dialog.clipboard:not([open]) { display: none; }
dialog.clipboard:focus       { outline: none; }

dialog.clipboard .wrapper {
    background:    var(--color-background);
    border-radius: var(--border-radius);
    box-shadow:    0 1em 3em 0 rgba(0, 0, 0, 0.35);
    cursor:        pointer;
    font-family:   '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto',
                   'Helvetica Neue', 'Arial', sans-serif,
                   'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-size:     16pt;
    max-width:     calc(100% - 4em);
    min-width:     20em;
    opacity:       0;
    padding:       1.5em;
    text-align:    center;
    transform:     translateY(0.75em);
    transition:    opacity 0.5s ease, transform 0.5s ease;
}
dialog.clipboard .wrapper:after {
    color:        var(--color-text);
    content:      'Click to copy';
    display:      block;
    font-size:    0.8em;
    margin-top:   1.5em;
}
body.is-touch dialog.clipboard .wrapper:after { content: 'Tap to copy'; }

dialog.clipboard .wrapper .content {
    background-color: var(--color-content-background);
    border-radius:    calc(var(--border-radius) / 3);
    border:           dashed 2px var(--color-content-border);
    color:            var(--color-content-text);
    overflow-x:       auto;
    overflow-y:       hidden;
    padding:          1.5em;
    position:         relative;
    user-select:      none;
    white-space:      nowrap;
    width:            100%;
}
dialog.clipboard .wrapper .content:before {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICM4MDgwODA7c3Ryb2tlLXdpZHRoOiAycHg7c3Ryb2tlLWxpbmVjYXA6IHNxdWFyZTt9cmVjdCB7ZmlsbDogbm9uZTtzdHJva2U6ICM4MDgwODA7c3Ryb2tlLXdpZHRoOiAycHg7c3Ryb2tlLWxpbmVjYXA6IHNxdWFyZTt9PC9zdHlsZT48bGluZSB4MT0iMiIgeTE9IjIiIHgyPSI0OCIgeTI9IjIiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48bGluZSB4MT0iNDYiIHkxPSIyIiB4Mj0iNDgiIHkyPSIxNiIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjxsaW5lIHgxPSIyIiB5MT0iMiIgeDI9IjIiIHkyPSI0OCIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjxsaW5lIHgxPSIyIiB5MT0iNDgiIHgyPSIxNiIgeTI9IjQ4IiB2ZWN0b3ItZWZmZWN0PSJub24tc2NhbGluZy1zdHJva2UiIC8+PHJlY3QgeD0iMTYiIHk9IjE2IiB3aWR0aD0iNDYiIGhlaWdodD0iNDYiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48L3N2Zz4=');
    background-position: center;
    background-repeat:   no-repeat;
    background-size:     contain;
    color:               var(--color-content-border);
    content:             '\00a0';
    display:             inline-block;
    margin-left:         -0.5em;
    margin-right:         0.5em;
    opacity:             0.35;
    width:               1.25em;
}
dialog.clipboard .wrapper .content:after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICM4MDgwODA7c3Ryb2tlLXdpZHRoOiA1cHg7c3Ryb2tlLWxpbmVjYXA6IHNxdWFyZTt9PC9zdHlsZT48bGluZSB4MT0iNyIgeTE9IjM2IiB4Mj0iMjYiIHkyPSI1NSIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjxsaW5lIHgxPSI1OSIgeTE9IjEzIiB4Mj0iMjYiIHkyPSI1NSIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjwvc3ZnPg==');
    background-position: center;
    background-repeat:   no-repeat;
    background-size:     1.25em;
    color:               var(--color-content-border);
    content:             '';
    font-size:           2em;
    height:              2em;
    left:                calc(50% - 1em);
    line-height:         2em;
    opacity:             0;
    position:            absolute;
    top:                 calc(50% - 1em);
    width:               2em;
}
dialog.clipboard .wrapper.copied:after            { content: 'Copied!' !important; }
dialog.clipboard .wrapper.copied .content         { animation: clipboard-dialog-content-copied 0.125s ease; color: transparent; }
dialog.clipboard .wrapper.copied .content:before  { display: none; }
dialog.clipboard .wrapper.copied .content:after   { animation: clipboard-dialog-content-copied 0.125s ease; opacity: 0.35; }
dialog.clipboard::backdrop { background-color: rgba(10, 10, 10, 0.85); opacity: 0; transition: opacity 0.25s ease; }
dialog.clipboard .close {
    -webkit-tap-highlight-color: transparent;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICNmZmZmZmY7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjAiIHkxPSIyMCIgeDI9IjQ0IiB5Mj0iNDQiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48bGluZSB4MT0iMjAiIHkxPSI0NCIgeDI9IjQ0IiB5Mj0iMjAiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48L3N2Zz4=');
    background-position: top 1rem right 1rem;
    background-repeat:   no-repeat;
    background-size:     3rem;
    cursor:    pointer;
    display:   block;
    height:    6rem;
    opacity:   0;
    position:  absolute;
    right:     0;
    top:       0;
    transition: opacity 0.25s ease, transform 0.5s ease;
    width:     6rem;
}
dialog.clipboard.active .wrapper      { opacity: 1; transform: none; }
dialog.clipboard.active .close        { opacity: 0.25; }
dialog.clipboard.active .close:hover  { opacity: 1; }
dialog.clipboard.active::backdrop     { opacity: 1; transition-delay: 0s; }

@media (max-width: 736px) {
    dialog.clipboard .wrapper {
        border-radius: 0;
        font-size: 14pt;
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
    dialog.clipboard .wrapper .content { padding: 1.5em 1.25em; }
    dialog.clipboard .close { background-position: top 0.5rem right 0.5rem; }
}


/* ================================================================
   DIVIDERS
   ================================================================ */

hr {
    align-items: center;
    border: 0;
    display: flex;
    justify-content: center;
    min-height: 1rem;
    padding: 0;
    position: relative;
    width: 100%;
}
hr:before { content: ''; }

hr.style1:not(:first-child) { margin-top:    0 !important; }
hr.style1:not(:last-child)  { margin-bottom: 0 !important; }
hr.style1:before { width: 100%; background-color: transparent; height: 1px; }


/* ================================================================
   GALLERY
   ================================================================ */

.gallery .inner       { display: inline-block; max-width: 100%; vertical-align: middle; }
.gallery ul            { display: flex; flex-wrap: wrap; justify-content: center; }
.gallery ul li         { position: relative; }
.gallery ul li .frame  { display: inline-block; overflow: hidden; vertical-align: top;
                         -webkit-backface-visibility: hidden; -webkit-transform: translate3d(0,0,0); }
.gallery ul li img     { margin: 0; max-width: 100%; vertical-align: top; width: auto; }
.gallery ul li .caption { width: 100%; }
.gallery ul li .caption p { width: 100%; }
.gallery ul li .caption a,
.gallery ul li .caption spoiler-text { pointer-events: auto; }

#gallery01             { text-align: center; }
#gallery01 .inner      { max-width: 12rem; width: 100%; }
#gallery01 ul          { justify-content: center; flex-direction: column; gap: 1rem; }
#gallery01 ul li       { border-radius: 0; width: 100%; }
#gallery01 ul li .frame       { border-radius: 0; display: block; }
#gallery01 ul li .thumbnail   { display: block; transition: none; }
#gallery01 ul li img          { display: block; width: 100%; }
#gallery01 ul li .thumbnail img { transition: none; }


/* ================================================================
   HEADINGS & PARAGRAPHS
   ================================================================ */

h1, h2, h3, p {
    direction: ltr;
    position: relative;
}
h1 span.p, h2 span.p, h3 span.p, p span.p {
    display: block;
    position: relative;
}
h1 span[style], h2 span[style], h3 span[style], p span[style],
h1 strong, h2 strong, h3 strong, p strong,
h1 a, h2 a, h3 a, p a,
h1 code, h2 code, h3 code, p code,
h1 mark, h2 mark, h3 mark, p mark,
h1 spoiler-text, h2 spoiler-text, h3 spoiler-text, p spoiler-text {
    -webkit-text-fill-color: currentcolor;
}

/* style1 — section headings */
h1.style1, h2.style1, h3.style1, p.style1 {
    text-align:   center;
    color:        #FFFFFF;
    font-family:  'Inter', sans-serif;
    font-size:    1.25em;
    line-height:  1;
    font-weight:  600;
    letter-spacing: 0;
    width:        100%;
}
h1.style1:not(:first-child), h2.style1:not(:first-child),
h3.style1:not(:first-child), p.style1:not(:first-child) { margin-top: 0 !important; }
h1.style1:not(:last-child),  h2.style1:not(:last-child),
h3.style1:not(:last-child),  p.style1:not(:last-child)  { margin-bottom: 0 !important; }
h1.style1 span.p:nth-child(n+2), h2.style1 span.p:nth-child(n+2),
h3.style1 span.p:nth-child(n+2), p.style1 span.p:nth-child(n+2) { margin-top: 0.5rem; }
h1.style1 a, h2.style1 a, h3.style1 a, p.style1 a { color: transparent; text-decoration: underline; }
h1.style1 a:hover, h2.style1 a:hover, h3.style1 a:hover, p.style1 a:hover { text-decoration: none; }

/* style2 — body copy */
h1.style2, h2.style2, h3.style2, p.style2 {
    text-align:   center;
    color:        #FFFFFF;
    font-family:  'Inter', sans-serif;
    font-size:    0.85em;
    line-height:  1.5;
    font-weight:  300;
    letter-spacing: 0;
    width:        100%;
}
h1.style2:not(:first-child), h2.style2:not(:first-child),
h3.style2:not(:first-child), p.style2:not(:first-child) { margin-top: 0 !important; }
h1.style2 span.p:nth-child(n+2), h2.style2 span.p:nth-child(n+2),
h3.style2 span.p:nth-child(n+2), p.style2 span.p:nth-child(n+2) { margin-top: 0.5rem; }
h1.style2 a, h2.style2 a, h3.style2 a, p.style2 a { color: transparent; text-decoration: underline; }
h1.style2 a:hover, h2.style2 a:hover, h3.style2 a:hover, p.style2 a:hover { text-decoration: none; }


/* ================================================================
   CONTAINERS
   ================================================================ */

.container { position: relative; }
.container > .wrapper          { vertical-align: top; position: relative; max-width: 100%; border-radius: inherit; }
.container > .wrapper > .inner { vertical-align: top; position: relative; max-width: 100%; border-radius: inherit; text-align: center; }

/* style2 containers — About, Socials, Contact, Other Platforms */
.container.style2 {
    display:          flex;
    width:            100%;
    align-items:      center;
    justify-content:  center;
    background-color: transparent;
}
.container.style2 > .wrapper { width: 100%; max-width: 100%; }
.container.style2 > .wrapper > .inner {
    --gutters:            1.5rem;
    --padding-horizontal: 1rem;
    --padding-vertical:   0;
    padding: var(--padding-vertical) var(--padding-horizontal);
}
.container.style2.default > .wrapper > .inner > *            { margin-bottom: var(--spacing); margin-top: var(--spacing); }
.container.style2.default > .wrapper > .inner > *:first-child { margin-top: 0 !important; }
.container.style2.default > .wrapper > .inner > *:last-child  { margin-bottom: 0 !important; }

/* .full bleed inside style2 */
.container.style2.default > .wrapper > .inner > .full {
    margin-left: calc(var(--padding-horizontal) * -1);
    max-width: none !important;
    width: calc(100% + var(--padding-horizontal) * 2 + 0.4725px);
}
.container.style2.default > .wrapper > .inner > .full:first-child {
    margin-top: calc(var(--padding-vertical) * -1) !important;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.container.style2.default > .wrapper > .inner > .full:last-child {
    margin-bottom: calc(var(--padding-vertical) * -1) !important;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

/* style1 containers */
.container.style1 > .wrapper { display: block; width: 100%; background-color: transparent; }
.container.style1 > .wrapper > .inner {
    --gutters:            1.5rem;
    --padding-horizontal: 1rem;
    --padding-vertical:   0;
    padding: var(--padding-vertical) var(--padding-horizontal);
}
.container.style1.default > .wrapper > .inner > *            { margin-bottom: var(--spacing); margin-top: var(--spacing); }
.container.style1.default > .wrapper > .inner > *:first-child { margin-top: 0 !important; }
.container.style1.default > .wrapper > .inner > *:last-child  { margin-bottom: 0 !important; }


/* ================================================================
   BUTTONS  (social links)
   ================================================================ */

.buttons {
    cursor:  default;
    display: flex;
    justify-content: center;
    letter-spacing: 0;
    padding: 0;
}
.buttons li { max-width: 100%; text-align: center; width: 100%; }
.buttons li a {
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: nowrap;
}

.buttons.style1 {
    gap:            0.5rem;
    flex-direction: column;
    flex-wrap:      nowrap;
    align-items:    center;
}
.buttons.style1 li { width: 70%; }
.buttons.style1 li a {
    display:         inline-flex;
    width:           100%;
    max-width:       100%;
    height:          2.75rem;
    line-height:     2.75rem;
    padding:         0 1.25rem;
    padding-left:    calc(0.025rem + 1.25rem);
    font-family:     'Inter', sans-serif;
    font-size:       0.95em;
    font-weight:     600;
    letter-spacing:  0.025rem;
    text-transform:  lowercase;
    border-radius:   3rem;
    justify-content: flex-start;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.buttons.style1 li a svg {
    display:     block;
    fill:        #FFFFFF;
    flex-grow:   0;
    flex-shrink: 0;
    height:      100%;
    min-width:   16px;
    width:       1.25em;
    margin-left:  -0.125em;
    margin-right: calc(0.5em + 0.025rem);
    transition:  fill 0.25s ease;
}
.buttons.style1 li a .label {
    direction:   ltr;
    overflow:    hidden;
    flex-grow:   1;
    flex-shrink: 1;
    text-align:  right;
    width:       100%;
}
.buttons.style1 .button { background-color: #000000; color: #FFFFFF; }

/* Per-button brand colours */
#buttons01 .n01 { background-color: #000000; }
#buttons01 .n02 { background-color: #006DA3; }
#buttons01 .n03 { background-color: #0055A3; }
#buttons01 .n04 { background-color: #07179A; }
#buttons01 .n05 { background-color: #1b2838; }
#buttons01 .n06 { background-color: #FF5B00; color: #FFFFFF; }
#buttons01 .n06 svg { fill: #FFFFFF; }


/* ================================================================
   ICONS  (contact & platform links)
   ================================================================ */

.icons {
    display:         flex;
    flex-wrap:       wrap;
    justify-content: center;
    letter-spacing:  0;
    padding:         0;
    gap:             0.6rem;
}
.icons li { position: relative; z-index: 1; }
.icons li a {
    align-items:     center;
    display:         flex;
    justify-content: center;
    text-decoration: none;
}
.icons li a svg { display: block; position: relative; }
.icons li a + svg {
    display:         block;
    height:          100%;
    left:            0;
    pointer-events:  none;
    position:        absolute;
    top:             0;
    width:           100%;
    z-index:        -1;
}
.icons li a .label { display: none; }

.icons.style1 {
    justify-content: center;
    font-size:       1.5em;
    gap:             0.65rem;
}
.icons.style1 li a {
    border-radius: 3rem;
    height:        2em;
    width:         2em;
    transition:    color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.icons.style1 li a svg  { height: 60%; width: 60%; transition: fill 0.25s ease; }
.icons.style1 a         { background-color: #181A1B; }
.icons.style1 a svg     { fill: #FFFFFF; }
.icons.style1 li a + svg { transition: fill 0.25s ease, stroke 0.25s ease; }

/* Per-icon brand colours */
#icons01 .n01 svg { fill: #33FF00; }
#icons01 .n02 svg { fill: #FF8A00; }
#icons02 .n01 svg { fill: #00FFFF; }
#icons02 .n04 svg { fill: #FF0000; }


/* ================================================================
   ICC CREDITS
   ================================================================ */

.icc-credits {
    display:          block;
    opacity:          1 !important;
    position:         relative;
    transition-delay: 0s !important;
}
.icc-credits span {
    border-radius:  24px;
    cursor:         pointer;
    display:        inline-block;
    font-family:    Arial, sans-serif;
    font-size:      12px;
    letter-spacing: 0;
    line-height:    1;
    position:       relative;
    text-decoration: none;
    width:          auto;
}
.icc-credits span a {
    display:         inline-block;
    padding:         0.5em 0.375em;
    position:        relative;
    text-decoration: none;
    transition:      color 0.25s ease, transform 0.25s ease;
    z-index:         1;
}
.icc-credits span a:before { content: '( '; opacity: 1; transition: opacity 0.25s ease; }
.icc-credits span a:after  { content: ' )'; opacity: 1; transition: opacity 0.25s ease; }
.icc-credits span::after {
    background-image: linear-gradient(30deg, #A464A1 15%, #3B5DAD 85%);
    border-radius:    inherit;
    box-shadow:       0 0.25em 1.25em 0 rgba(0, 0, 0, 0.25);
    content:          '';
    display:          block;
    height:           calc(100% + 2px);
    left:             -1px;
    opacity:          0;
    pointer-events:   none;
    position:         absolute;
    top:              -1px;
    transition:       opacity 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    width:            calc(100% + 2px);
}
.icc-credits span:hover                 { text-transform: none !important; }
.icc-credits span:hover a               { color: #ffffff !important; transform: scale(1.1) translateY(-0.05rem); }
.icc-credits span:hover a:before,
.icc-credits span:hover a:after         { opacity: 0; }
.icc-credits span:hover::after          { opacity: 1; transform: scale(1.1) translateY(-0.05rem); }

#credits span { color: rgba(255, 255, 255, 0.498); margin-top: 1rem !important; }


/* ================================================================
   HOME BUTTON
   ================================================================ */

.home-button-wrap {
    display:         flex;
    justify-content: center;
    padding:         0.75rem 0 0.25rem;
}

.home-button {
    display:          inline-flex;
    align-items:      center;
    justify-content:  center;
    gap:              0.5em;
    height:           2.75rem;
    padding:          0 1.75rem;
    font-family:      'Inter', sans-serif;
    font-size:        0.95em;
    font-weight:      600;
    letter-spacing:   0.025rem;
    text-transform:   lowercase;
    text-decoration:  none;
    color:            #FFFFFF;
    background-color: #181A1B;
    border-radius:    3rem;
    border:           1px solid rgba(255, 255, 255, 0.15);
    transition:       color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.home-button svg {
    display:     block;
    fill:        #FFFFFF;
    flex-shrink: 0;
    height:      1em;
    width:       1em;
    transition:  fill 0.25s ease;
}

.home-button:hover {
    background-color: #2a2d2f;
    border-color:     rgba(255, 255, 255, 0.35);
}


/* ================================================================
   FOOTER
   ================================================================ */

.footer {
    display:         flex;
    justify-content: center;
    align-items:     center;
    font-family:     'Inter', sans-serif;
}
.footer ul {
    list-style:    none;
    display:       flex;
    gap:           0.5rem;
    font-size:     0.8rem;
    color:         white;
    margin:        0;
    margin-bottom: 0.6rem;
    padding:       0;
}
.footer a {
    text-decoration: none;
    color:           white;
    transition:      color 0.3s ease;
}
.footer .separator { opacity: 0.4; }
