/*/
 * ================================
 * Copyright by Cerine | https://caelestis.nu
 *
 * Feel free to explore the source for learning and inspiration.
 * Please do not copy, modify, or reuse this code or content for your own projects.
 * ================================
/*/











/*/
 * ================================
 * GLOBALS
 * ================================
/*/

body {
    padding: 0px;
    margin: 0px;
    color: #3b352d;
    font: normal 1.1em 'Fira Sans', sans-serif;
    background: url('bg.png') top center repeat #f8f3ea;
}


b,
strong {
    font: bold 1.1em "Playfair Display", serif;

    background: linear-gradient(
        to right,
        #bf2a08,
        #ff5d21,
        #fbc31c
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

i {
    font: italic 1em "Libre Caslon Text", serif;
    color: #6b7020;
}

u {
    font: normal 1.1em "Averia Serif Libre", serif;
    color: #6b2d1d;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(
        to right,
        transparent,
        #bf2a08 25%,
        #bf2a08 75%,
        transparent
    ) 1;
}

h1 {
    font: italic 4em "Playfair Display", serif;
    color: #6b7020;

    text-align: center;
    text-transform: lowercase;

    margin: 0;
    padding: 0;

    text-shadow: 1px 1px rgba(255, 255, 255, .7);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

h1::before,
h1::after {
    content: "";
    height: 3px;
    flex: 1;

    background: linear-gradient(
        to right,
        transparent,
        #2e5a0c 20%,
        #928d1c 50%,
        #fbc31c 80%,
        #ff5d21
    );
}

h1::after {
    background: linear-gradient(
        to left,
        transparent,
        #2e5a0c 20%,
        #928d1c 50%,
        #fbc31c 80%,
        #ff5d21
    );
}

h2 {
    position: relative;

    font: normal 2em "Libre Caslon Text", serif;
    color: #6b7020;

    text-align: left;
    text-transform: uppercase;

    margin: 30px 0 20px 30px;
    padding: 0 0 8px 15px;

    text-shadow: 1px 1px rgba(255, 255, 255, .7);
}

h2::after {
    content: "";
    display: block;

    width: 250px;
    height: 2px;

    margin-top: 7px;

    background: linear-gradient(
        to right,
        #2e5a0c,
        #928d1c,
        #fbc31c,
        transparent
    );
}

section {
        background: url('bg_content_foot.png') bottom center no-repeat,
        	    url('bg_content.png') top center no-repeat;
       	padding: 170px 10px 100px 10px;
	display: block;
        color: #444;
        width: 900px;
        margin: 50px auto;
        text-shadow: 1px 1px rgba(255, 255, 255, .5);
        text-align: center;
}

main {
    width: 1440px;
    line-height: 30px;
    text-align: justify;
    margin: 0 auto;
    clear: both;
    padding: 50px 50px 0 50px;
}


/*/
 * ================================
 * HEADING
 * ================================
/*/

header {
    height: 510px;
    width: 1440px;
    background: url('banner.png') top center no-repeat transparent;
    margin: 0 auto;
    position: relative;
}



/*/
 * ================================
 * NAVIGATION
 * ================================
/*/

nav {
    width: 100%;
    background: transparent;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;

    text-align: right;
    overflow: visible;
    box-sizing: border-box;
    padding-right: 20px;
}

nav a:link,
nav a:visited,
nav a:active {
    position: relative;
    display: inline-block;

    font: bold 1.4em "Playfair Display", serif;
    color: #6b7020;

    line-height: 15px;
    padding: 12px 18px 10px 18px;
    margin-left: 3px;

    width: 150px;
    box-sizing: border-box;

    text-align: center;
    text-transform: uppercase;
    text-decoration: none;

    background: transparent;
    border-radius: 5px 5px 0 0;

    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease,
        text-shadow .3s ease;
}

nav a::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        to right,
        transparent 0%,
        #2e5a0c 20%,
        #928d1c 35%,
        #fbc31c 50%,
        #ff5d21 65%,
        #bf2a08 80%,
        transparent 100%
    );

    transition: background .35s ease;
}

nav a:hover {
    color: #222;

    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(251, 195, 28, 0.15) 25%,
        rgba(251, 195, 28, 0.55) 65%,
        rgba(251, 195, 28, 1) 100%
    );

    transform: translateY(-5px);

    text-shadow: 1px 1px rgba(255, 255, 255, .5);
}


nav a:hover::after {
    background: linear-gradient(
        to right,
        #2e5a0c 0%,
        #928d1c 25%,
        #fbc31c 50%,
        #ff5d21 75%,
        #bf2a08 100%
    );
}

nav a span {
    display: block;

    color: #fbc31c;

    font: normal .5em 'Fira Sans', sans-serif;
    line-height: 15px;

    letter-spacing: 1px;
    text-transform: lowercase;

    text-shadow: 1px 1px rgba(34, 34, 34, .6);

    transition:
        color .3s ease,
        text-shadow .3s ease;
}


nav a:hover span {
    color: #ff5d21;

    text-shadow: 1px 1px rgba(255, 255, 255, .5);
}


/*/
 * ================================
 * STATS
 * ================================
/*/

.stats-left {
    display: inline-block;
    text-align: center;
    padding: 0px 15px 0px 15px;
    width: 250px;
    text-shadow: none;
}

.stats-right {
    display: inline-block;
    text-align: center;
    padding: 10px 15px 10px 15px;
    width: 400px;
    text-shadow: none;
}

.total {
    font: normal 6.5em 'Playfair Display', serif;
    line-height: 50px;

    background: linear-gradient(
        to bottom,
        #fbc31c 0%,
        #ff5d21 55%,
        #bf2a08 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    text-shadow: none;
}

.pending {
    font: bold 1.1em "Playfair Display", serif;
    color: #3b352d;
}


/*/
 * ================================
 * CLASS / ID
 * ================================
/*/

.content {
        background: url('bg_content_foot.png') bottom center no-repeat,
        	    url('bg_content.png') top center no-repeat;
       	padding: 170px 10px 100px 10px;
	display: block;
        color: #444;
        width: 900px;
        margin: 50px auto;
        text-shadow: 1px 1px rgba(255, 255, 255, .5);
        text-align: center;
        }

.content strong {
	text-shadow: none;
        }

.avatar {
    shape-outside: polygon(0 0, 89% 0, 65% 33%, 99% 43%, 81% 71%, 51% 100%, 0 100%);
    background: url('icon.png') no-repeat transparent;
    width: 150px;
    height: 150px;
    float: left;
    padding: 10px;
}

.codes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.codes img {
    display: block;
}

.button {
    display: inline-block;
    padding: 3px;
    background: transparent;

    border: 2px solid #6b7020;
    border-radius: 6px;

    box-shadow:
        0 0 0 1px rgba(251,195,28,.3),
        0 0 10px rgba(251,195,28,.15);

    transition: all .4s ease;
}

.button:hover {
    border-color: #fbc31c;

    box-shadow:
        0 0 0 1px rgba(255,93,33,.5),
        0 0 8px rgba(251,195,28,.5),
        0 0 20px rgba(255,93,33,.25);

    transform: scale(1.03);
}


/*/
 * ================================
 * FORMS
 * ================================
/*/

.mod {
    position: relative;

    background: #fffaf0;

    color: #3b352d;

    width: 600px;
    text-align: center;
    padding: 16px 25px;

    border-radius: 18px;

    text-shadow: 1px 1px rgba(255, 255, 255, .7);

    margin: 20px auto 50px auto;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    );
}

.mod::before,
.mod::after {
    content: "";
    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    width: 75%;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
        #2e5a0c 20%,
        #928d1c 35%,
        #fbc31c 50%,
        #ff5d21 65%,
        #bf2a08 80%,
        transparent
    );
}

.mod::before {
    top: 0;
}

.mod::after {
    bottom: 0;
}

.mod .panel-text {
    position: relative;
    z-index: 1;

    display: inline-block;
}

.mod .panel-text a:link,
.mod .panel-text a:visited {
    font: normal 1em "Playfair Display", serif;
    color: #6b7020;

    text-decoration: none;



    transition: all, .5s;
    -moz-transition: all, .5s;
    -webkit-transition: all, .5s;
}

.mod .panel-text a:hover {
    color: #bf2a08;

    text-shadow:
        1px 1px rgba(251, 195, 28, .45);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input:not([type]),
select,
textarea {
    font: normal 1em 'Fira Sans', sans-serif;

    background: rgba(248, 243, 234, .85);
    color: #3b352d;

    border: 2px solid #6b7020;
    border-radius: 4px;

    padding: 10px 12px;
    box-sizing: border-box;

    width: 100%;
    float: none;

    box-shadow:
        inset 0 1px 3px rgba(59, 53, 45, .12),
        0 1px 2px rgba(59, 53, 45, .08);

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="url"]:hover,
input:not([type]):hover,
select:hover,
textarea:hover {
    border-color: #928d1c;
    background: #fffaf0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input:not([type]):focus,
select:focus,
textarea:focus {
    outline: none;

    border-color: #ff5d21;

    box-shadow:
        0 0 0 2px rgba(251, 195, 28, .2),
        0 0 10px rgba(255, 93, 33, .15);

    background: #fffdf8;
}

textarea {
    height: 150px;
    resize: none;
}

input[type="checkbox"],
input[type="radio"] {
    width: 20px;
    float: none;
}

input[type="submit"],
input[type="reset"] {
    width: 200px;
    float: none;
    box-sizing: border-box;
    padding: 10px 18px;
    font: normal 1em 'Fira Sans', sans-serif;
    min-height: 42px;
}


/*/
 * ================================
 * LINKS
 * ================================
/*/

a {
    cursor: default;
    text-decoration: none;
    transition: all, .5s;
    -moz-transition: all, .5s;
    -webkit-transition: all, .5s;
}

a:link,
a:visited {
    font: normal 1.1em "Playfair Display", serif;
    color: #bf2a08;
    transition: all, .5s;
    -moz-transition: all, .5s;
    -webkit-transition: all, .5s;
}

a:hover {
    text-decoration: none;
    color: #6b7020;
    transition: all, .5s;
    -moz-transition: all, .5s;
    -webkit-transition: all, .5s;
    text-shadow: 1px 1px #eee;
}

a.text-link:link,
a.text-link:visited {
    color: #6b7020;
    background-image: linear-gradient(
        to right,
        #2e5a0c,
        #928d1c,
        #fbc31c,
        #ff5d21
    );
    background-size: 100% 20%;
    background-position-y: 100%;
    background-repeat: no-repeat;
    transition: background-size 0.2s ease-in-out;
}

a.text-link:hover {
    color: #222;
    background-size: 100% 5%;
    text-shadow: 1px 1px #eee;
}


/*/
 * ================================
 * FANS
 * ================================
/*/

main > center:has(.fan) {
    display: grid;

    width: 1300px;
    max-width: 100%;
    margin: 0 auto;

    grid-template-columns: repeat(auto-fill, 175px);
    justify-content: center;

    gap: 20px;
}

.fan {
    width: 175px;
    box-sizing: border-box;

    background: rgba(255, 250, 240, .8);
    color: #3b352d;

    padding: 12px 10px;
    margin: 0;

    text-align: center;
    line-height: 25px;

    font-size: .9em;

    border: 1px solid rgba(107, 112, 32, .35);
    border-radius: 3px;

    box-shadow:
        0 2px 5px rgba(59, 53, 45, .12),
        inset 0 0 12px rgba(251, 195, 28, .08);

    text-shadow: 1px 1px rgba(255, 255, 255, .7);

    position: relative;
}

.fan::after {
    content: "";
    display: block;

    width: 55px;
    height: 2px;

    margin: 8px auto 0;

    background: linear-gradient(
        to right,
        transparent,
        #928d1c,
        #fbc31c,
        #ff5d21,
        transparent
    );
}

.fan b {
    font: bold 1.1em "Playfair Display", serif;
    color: #6b7020;
}

.fan b,
.mod b {
    color: #e9e2dc;
    text-shadow: none;
}


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

footer {
    background: url('footer.png') bottom center no-repeat;
    width: 100%;
    min-height: 230px;
    height: auto;

    position: relative;
    display: block;
    text-align: center;

    overflow: visible;

    padding-bottom: 20px;
    box-sizing: border-box;
}

footer menu {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
    box-sizing: border-box;
}

footer menu a:link,
footer menu a:visited {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    width: 140px;
    padding: 8px 12px;
    margin: 150px 5px 5px 0;
    box-sizing: border-box;

    font: bold .8em "Playfair Display", serif;
    color: #6b7020;

    background: transparent;

    border-radius: 5px 5px 0 0;
    border-bottom: 3px solid transparent;

    border-image: linear-gradient(
        to right,
        transparent,
        #928d1c 25%,
        #fbc31c 50%,
        #ff5d21 75%,
        transparent
    ) 1;

    text-transform: uppercase;
    text-decoration: none;

    text-shadow: 1px 1px rgba(255, 255, 255, .5);

    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease,
        text-shadow .3s ease;
}


footer menu a:hover {
    color: #222;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(251, 195, 28, .08) 20%,
        rgba(251, 195, 28, .35) 60%,
        rgba(251, 195, 28, .9) 100%
    );

    transform: translateY(-4px);

    text-shadow: 1px 1px rgba(255, 255, 255, .7);
}

footer menu a .material-symbols-outlined {
    font-size: 1.15em;
    line-height: 1;
    vertical-align: middle;
    color: #ff5d21;

    transition:
        color .3s ease,
        transform .3s ease;
}

footer menu a:hover .material-symbols-outlined {
    color: #bf2a08;
    transform: translateY(-2px);
}

footer small {
    position: relative;
    display: block;
    width: 1200px;
    max-width: calc(100% - 40px);
    margin: 15px auto 0;
    padding: 16px 120px;
    box-sizing: border-box;
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font: normal .7em 'Fira Sans', sans-serif;
    color: #555;
    line-height: 15px;
    text-shadow: 1px 1px rgba(255, 255, 255, .7);
    background: #fffaf0;
    text-shadow: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );

    transition:
        background-color .35s ease,
        box-shadow .35s ease,
        color .35s ease;
}

footer small:hover::before,
footer small:hover::after {
    width: 100% !important;
    height: 4px !important;
    filter: none !important;
}

footer small::before,
footer small::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #2e5a0c 20%,
        #928d1c 35%,
        #fbc31c 50%,
        #ff5d21 65%,
        #bf2a08 80%,
        transparent
    );

    transition:
        width .35s ease,
        height .35s ease,
        filter .35s ease;
}

footer small::before {
    top: 0;
}

footer small::after {
    bottom: 0;
}

footer small:hover::before,
footer small:hover::after {
    width: 95%;
    filter: brightness(1.15);
}


small b {
    font: bold 1em "Playfair Display", serif;
    color: #5a7168;
}

small a:link,
small a:visited {
    font: bold 1em "Playfair Display", serif;
    color: #85927f;
    text-decoration: none;
}

footer small a:link,
footer small a:visited {
    font: bold 1em "Playfair Display", serif;
    color: #85927f;
    text-decoration: none;
    transition:
        color .3s ease,
        text-shadow .3s ease,
        background-size .3s ease;
}

footer small a:hover,
footer small a:active {
    color: #bf2a08;
    text-decoration: none;
    text-shadow:
        1px 1px rgba(251, 195, 28, .45);
}