/* RENK ŞEMASI */

:root {
    --color-back: #1a1a1d;
    --color-back1: #222;
    --color-back2: #111;
    --color-back3: #333;
    --color-lighty: #cdc;
    --color-light: #fef;
    --color-dark: #4e4e50;
    --color-stun: #0f0;
    --color-accent: #3f5;
    --color-effect: #00EEb0;
}


/* KİLİT DÖNGÜLER */

body {
    background: var(--color-back);
    font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
}


/* HARİCİ DEĞİŞKENLER */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #444444;
}

::-webkit-scrollbar-thumb:hover {
    background: #00EEb0;
}

.flexy {
    flex-direction: column;
}

.t-logo img {
    position: relative;
    transition: 0.3s;
}

.t-logo:hover img {
    transform: scale(1.1);
}

.crs-pointer {
    cursor: pointer;
}

.bgc-0 {
    background: var(--color-back)
}

.bgc-1 {
    background: var(--color-back1)
}

.bgc-2 {
    background: var(--color-back2)
}

.bgc-3 {
    background: var(--color-back3)
}

.tx-gr {
    color: gray;
    font-style: italic;
}

.tx-alg-end {
    text-align: right;
}

.over {
    overflow: hidden;
}

.over-x {
    overflow-x: hidden;
}

.over-y {
    overflow-y: hidden;
}

.scroll-x {
    overflow-x: scroll;
}

.scroll-y {
    overflow-y: scroll;
}

span.donation {
    color: orange;
}

@media (max-width: 996px) {
    span.donation {
        font-size: 0.6em;
    }
}


/* NAVBAR */

.navc-end {
    justify-content: flex-end;
}

.navc-end .navbar-nav {
    justify-content: space-evenly;
    align-items: center;
    width: 75%;
}

.navc-end .navbar-nav button {
    height: 45px;
}

header .slist a {
    position: relative;
    color: var(--color-lighty);
    transition: 0.3s;
}

header .slist a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 10%;
    height: 3px;
    background: var(--color-stun);
    transition: 0.4s;
}

header .slist a:hover {
    color: var(--color-light);
    filter: brightness(1.4);
}

header .slist a:hover::before {
    width: 100%;
}

@media (max-width: 996px) {
    header .slist a {
        font-size: 0.7em;
    }
}


/* FOOTER */

footer i {
    color: var(--color-stun);
}

footer a {
    color: var(--color-lighty);
    transition: 0.3s;
}

footer a:hover {
    color: var(--color-light);
    filter: brightness(1.4);
}


/******************************/


/*    		ÜSTE DÖNÜŞ			    */


/******************************/

#tpscrol {
    z-index: 99;
    right: 20px;
    width: 52px;
    height: 52px;
    bottom: 20px;
    border: none;
    outline: none;
    display: none;
    position: fixed;
    cursor: pointer;
    border-radius: 50%;
    background-color: #323137;
}

#tpscrol:hover {
    background-color: #0f0f11;
}

#tpscrol img {
    width: 18px;
    margin-left: 0.125rem;
    margin-bottom: 0.25rem;
}


/* LİSTELEME */

.extable tbody tr {
    vertical-align: middle;
    transition: 0.4s;
}

.extable tbody tr * {
    transition: 0.3s;
}

.extable tbody tr:hover img {
    transform: scale(1.3);
}

.i-text {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
}

.i-text:hover {
    color: var(--color-accent);
    letter-spacing: 1px;
    font-style: italic;
}

.i-like {
    cursor: pointer;
    font-size: 1.6em;
    font-weight: 700;
    color: slategray;
    transition: 0.2s;
}

.i-like.liked {
    color: var(--color-stun);
}

.i-like:hover {
    font-size: 1.65em;
    color: lime;
}

.i-dislike {
    cursor: pointer;
    font-size: 1.6em;
    font-weight: 700;
    color: slategray;
    transition: 0.2s;
}

.i-dislike.disliked {
    color: red;
}

.i-dislike:hover {
    font-size: 1.65em;
    color: darkred;
}

.c-social {
    cursor: pointer;
    font-size: 1.6em;
    font-weight: 700;
    color: orange;
    transition: 0.2s;
}

.c-social:hover {
    font-size: 1.65em;
    color: black;
}

@media (max-width: 991.98px) {
    .i-text {
        font-size: 0.9em;
    }
    .i-like,
    .i-dislike {
        font-size: 1.4em;
    }
    .i-like:hover,
    .i-dislike:hover {
        font-size: 1.5em;
    }
    .extable tbody tr:hover img {
        transform: scale(1.2);
    }
}


/* BUTONLAR */

.btn-log {
    position: relative;
    background: transparent;
    color: #00EEb0;
    border-radius: 10px;
    transition: 0.4s;
    font-weight: 500;
    box-shadow: 2px 2px 1px #00EEb0;
    z-index: 1;
}

.btn-log::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5%;
    height: 100%;
    background: #00EEB0;
    border-radius: 10px;
    transition: 0.2s;
    z-index: -1;
}

.btn-log:hover {
    color: black;
}

.btn-log:hover::before {
    width: 100%;
    filter: brightness(200%);
    border-radius: 10px;
}

.btn-cls {
    color: white;
    background: transparent;
    border: none;
    font-size: 1.3em;
}


/* KAYAN ALAN */

.top-container {
    overflow-x: hidden !important;
    display: flex !important;
    flex-direction: row !important;
    position: relative;
    width: 100%;
    height: 300px;
    overflow-y: visible;
}

.top-container:hover div {
    animation-play-state: var(--pause-on-hover);
}

.top-container:active div {
    animation-play-state: var(--pause-on-click);
}

.topList {
    flex: 0 0 auto;
    min-width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
    animation-play-state: var(--play);
    animation-delay: var(--delay);
    animation-direction: var(--direction);
    overflow-y: visible;
}

.topList.noanim {
    animation: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.topList img {
    height: 290px;
    width: 320px;
    object-fit: cover;
    margin: 0 8px;
    border-radius: 18px;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.8);
}


/* KART LİSTESİ */

.cardy {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    resize: none;
}

.cardy .card {
    background: rgba(30, 30, 30, 0.4);
    border-radius: 10px;
    transition: 0.5s;
    cursor: pointer;
    margin: 0 10px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}

.cardy .card * {
    border-radius: 10px;
    transition: 0.4s;
}

.cardy .card img {
    filter: brightness(0.7);
}

.cardy .card a {
    color: var(--color-light);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cardy .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 6px rgba(180, 40, 140, 0.9);
    filter: brightness(1.1);
}

.cardy .card:hover img {
    filter: brightness(1);
}

.cardy .card:hover a {
    color: white;
}


/* PROFILE */

.pr-main {
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pr-user {
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pr-userinfo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.pr-userimg {
    position: relative;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

.pr-userinfo img {
    height: 90px;
}

.pr-userinfo p {
    color: white;
    font-weight: 800;
    letter-spacing: 3px;
}

.pr-tagged {
    position: relative;
    color: var(--color-lighty);
}

.pr-tagged::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-stun);
}

.pr-refs i {
    color: var(--color-effect);
    font-size: 1.6em;
}

.pr-refs img {
    height: 64px;
}

.pr-card {
    border-radius: 15px;
    background: var(--color-back2);
}

.pr-card h6 {
    color: var(--color-lighty);
}

.pr-card h5 {
    color: white;
}

.pr-nft {
    border-radius: 15px;
    transition: 0.4s;
}

.pr-nft * {
    border-radius: 10px;
    transition: 0.4s;
}

.pr-nft:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.pr-nft-t {
    font-size: 14px;
}

.pr-nft-s {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.pr-nft img {
    max-height: 200px;
    object-fit: cover;
}

.pr-donation {
    transition: 0.1s;
}

.pr-donation:hover {
    color: var(--color-effect) !important;
    font-size: 1.1em;
}

.pr-address {
    position: relative;
    border-radius: 18px;
}

.pr-address::before {
    content: 'Copied!';
    position: absolute;
    height: 25px;
    background: #10ff00;
    color: white;
    top: -28px;
    left: 40%;
    font-weight: 600;
    font-style: oblique;
    width: 20%;
    display: none;
    border-radius: 10px;
}

.pr-address:focus::before {
    display: block;
}


/* NFT DETAYLARI */

.nf-owner {
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.nf-ownera {
    font-weight: 400;
    color: gray;
}

.nf-ownera a {
    color: orange;
}

.nf-ownerb {
    position: relative;
    font-weight: 700;
    color: var(--color-effect);
    letter-spacing: 1px;
    transition: 0.2s;
}

.nf-ownerb::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 5px;
    width: 15%;
    border-radius: 20px;
    background: var(--color-effect);
    transition: 0.2s;
}

.nf-ownerb:hover {
    color: orange;
}

.nf-ownerb:hover::before {
    width: 110%;
    left: -5%;
    background: orange;
}

@media (max-width: 996px) {
    .nf-ownera a {
        font-size: 0.6em;
    }
}

.nf-card {
    background: var(--color-back1);
    border-radius: 12px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}

.nf-card * {
    border-radius: 12px;
}

.nf-card img {
    object-fit: cover;
    max-height: 300px;
}

.nf-card .nf-subtext {
    color: gray;
    font-weight: 400;
    margin: 0;
}

.nf-card p {
    color: azure;
    font-weight: 400;
    margin: 0;
}

.nf-card h5 {
    color: white;
    font-weight: 600;
    margin: 4px 0;
}

.nf-scard {
    border-radius: 15px;
    background: var(--color-back1);
    box-shadow: 0 0 10px rgba(190, 190, 190, 0.4);
}

.nf-scard h6 {
    color: gray;
}

.nf-scard h5 {
    color: orange;
}

.nf-bcard {
    background: rgb(20, 20, 20);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
    border-radius: 18px;
}

.nf-bcard h5 {
    color: gray;
}


/* KURT */

#logo-container svg {
    width: 100px;
    height: auto;
}

@media (max-width: 996px) {
    #logo-container,
    #logo-container svg {
        display: none;
    }
}


/* MULTIPLE */

.off {
    display: none;
}

.on {
    display: inline-block;
}


/*Click & Copy*/

.copy-click {
    font-family: "abigail", Sans-serif;
    font-size: 1em;
    font-weight: normal;
    text-transform: lowercase;
    letter-spacing: 1.5px;
    -webkit-text-stroke: 1px;
    position: relative;
    text-decoration: none;
    color: #f14f4b;
    transition: background-color calc(var(--duration) * 2) var(--ease);
}

.copy-click:after {
    color: #7894b1;
    font-family: "IBM Plex Sans Condensed", Sans-serif;
    font-weight: 200;
    text-transform: uppercase;
    font-size: 12px;
    content: attr(data-tooltip-text);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    padding: 8px 16px;
    white-space: nowrap;
    /*background-color: blue;*/
    border-radius: 4px;
    box-shadow: 0 0 0 -12px rgba(0, 0, 0, 0);
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(-50%, 12px);
    transform: translate(-50%, 12px);
    transition: box-shadow calc(var(--duration) / 1.5) var(--bounce), opacity calc(var(--duration) / 1.5) var(--bounce), -webkit-transform calc(var(--duration) / 1.5) var(--bounce);
    transition: box-shadow calc(var(--duration) / 1.5) var(--bounce), opacity calc(var(--duration) / 1.5) var(--bounce), transform calc(var(--duration) / 1.5) var(--bounce);
    transition: box-shadow calc(var(--duration) / 1.5) var(--bounce), opacity calc(var(--duration) / 1.5) var(--bounce), transform calc(var(--duration) / 1.5) var(--bounce), -webkit-transform calc(var(--duration) / 1.5) var(--bounce);
}

.copy-click.is-hovered:after {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    transition-timing-function: var(--ease);
}

.copy-click.is-copied {
    background-color: red;
}

.copy-click.is-copied:after {
    content: attr(data-tooltip-text-copied);
}


/*Confetti*/

@keyframes bang {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.confetti {
    width: 240px;
    margin: 150px auto 0;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
}

.confetti span {
    /*color: #333;
  font-size: 0.9em;*/
}

.confetti i {
    position: absolute;
    display: block;
    left: 50%;
    top: 20px;
    width: 3px;
    height: 8px;
    background: red;
    opacity: 0;
}


/*Confetti*/


/* kursor başlangıc



* {
    box-sizing: border-box;
    cursor: none;
}

.cursor-point,
.cursor-tail {
    position: fixed;
    border-radius: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    pointer-events: none;
    top: 50%;
    left: 50%;
    z-index: 99999999;
    background-color: red;
}

.cursor-point {
    width: 15px;
    height: 15px;
}

.cursor-tail {
    width: 7px;
    height: 7px;
    transition: all 150ms ease-out;
}

.cursor-click {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid red;
    animation: cursorAnimation 400ms;
}

@keyframes cursorAnimation {
    to {
        transform: scale(2.3);
        opacity: 0;
    }
}




kursor bitiş*/