
body.modal-open {
    overflow: hidden;
}
body {
    background-color: #000;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}
* {
    font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
    box-sizing: border-box;
    margin: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: #ffffff;
}

*:focus {
    outline: none;
}

.material-symbols-rounded {
    font-family: 'Material Symbols Rounded', sans-serif;
    font-variation-settings:
        'FILL'0,
        'wght'300,
        'GRAD'0,
        'opsz'24;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    overflow: hidden;
    width: 100%;
    min-height: 85vh;
    height: max-content;
    background-color: #000;
}

.category-list,
.legal-list,
.tag-list {
    list-style: none;
    display: flex;
    gap: 0;
    justify-content: start;
    align-items: center;
    width: fit-content;
    margin: 0 auto 0 auto;
    max-width: 85%;
    overflow-x: auto;
    animation: paperComing 0.5s;
}

.category-list::-webkit-scrollbar,
.legal-list::-webkit-scrollbar,
.tag-list::-webkit-scrollbar,
.apagination::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.category-list::-webkit-scrollbar-thumb,
.legal-list::-webkit-scrollbar-thumb,
.tag-list::-webkit-scrollbar-thumb,
.apagination::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 6px 6px 6px #ffffff75;
}
@keyframes slideOut {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(-100%); opacity: 0; }
}

@keyframes slideIn {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slide-out {
    animation: slideOut 0.3s forwards;
}

.slide-in {
    animation: slideIn 0.3s forwards;
}

.category-item,
.legal-item,
.tag-item {
    font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    color: #333336;
    background-color: #d1d1d6;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
    user-select: none;
    white-space: nowrap;
    outline: none;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin: 4px;
    transform: scale(0.98);
}

.category-item:hover,
.legal-item:hover,
.tag-item:hover {
    background-color: #b2b2b7; 
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15); 
    transform: scale(1);
}
.category-item:active,
.legal-item:active,
.tag-item:active {
    transform: scale(0.96);
}
.category-item.selected,
.legal-item.selected,
.tag-item.selected {
    color: #ffffff;
    background-color: #8f8f94;
    opacity: 1;
    scale: 1;
    font-weight: 700; 
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2); 
}

.apagination {
    display: flex;
    justify-content: start;
    overflow-x: auto;
    margin: 10px auto 0 auto;
    width: fit-content;
    max-width: 85%;
    border-radius: 12px;
    animation: fadeIn 0.4s ease-out;
    padding: 5px 8px;
    background-color: rgba(220, 220, 225, 0.25); 
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
    border-radius: 12px;
    gap: 0px;
}

#pagination-controls-top {
    margin-bottom: 12px;
}

#pagination-controls-bottom {
    margin-top: 0;
}

.pagination-btn {
    font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 10px;
    margin: 4px;
    border: none;
    border-radius: 10px;
    background-color: #d1d1d6; 
    color: #333336;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
    user-select: none;
    outline: none;
    transform: scale(0.96);
}

.pagination-btn:hover {
    background-color: #b5b5ba; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transform: scale(1);
}

.pagination-btn:active {
    transform: scale(0.92);
}

.pagination-btn.selected {
    color: white;
    background-color: #8f8f94; 
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.tox-statusbar__branding{
    display: none;
}

[data-tooltip] {
    font-weight: 400;
    position: relative;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -2.8em; 
    left: 50%;
    font-weight: 400;
    transform: translateX(-50%);
    background-color: #3d3d3e;
    color: white;
    text-align: center;
    border-radius: 12px;
    padding: 6px 12px;
    white-space: nowrap;
    font-size: 11pt;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 1000; 
}

[data-tooltip]:hover::after {
    animation: forwards tooltip 0.75s;
}
.i[data-tooltip]::after{
    width: 200px;
    white-space: wrap;
    overflow: hidden;
}
#logo a[data-tooltip]::after{
    bottom: -1.5em;
    z-index: 1000;
}
.social-link[data-tooltip]::after, .email-link[data-tooltip]::after{
    bottom: 3.6em;
    z-index: 1000;
}
.yukari-cik[data-tooltip]::after,
.clap-icon[data-tooltip]::after,
    .share-icon[data-tooltip]::after,
    .newTab[data-tooltip]::after,
    .view[data-tooltip]::after,
    .i[data-tooltip]::after,
    .createNote-icon[data-tooltip]::after{
        bottom: 3.5em;
        z-index: 1000;
    }
        .share-icon[data-tooltip]::after{
            width: min-content;
            white-space: wrap;
            overflow: hidden;
        }
@keyframes tooltip{
    0%{
        opacity: 0;
        visibility: visible;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 1;
        visibility: visible;
        z-index: 9999;
    }
}
.note-modal {
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    transition: 0.2s;
}
.note-modal.animate{
    animation: fadeInNote 0.3s forwards ease;
}
.note-modal.close{
    animation: fadeInNote 0.3s reverse ease-out;
}
@keyframes fadeInNote {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.note-modal-content {
    background-color: #1c1c1e;
    padding: 15px;
    border-radius: 14px;
    min-width: 27vw;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    transform: scale(1);
}
.note-modal-content input {
    height: min-content;
    width: 100%;
    padding: 10px 15px;
    border-radius: 12px;
    outline: none;
    border: none;
    background-color: #2d2d2e;
    resize: horizontal;
    font-weight: 500;
    font-size: 11pt;
    transition: 0.2s;
    transform: scale(0.98);
 }
 .note-modal-content input:hover{
    background-color: #3d3d3e;
    transform: scale(1);
 }
 .note-modal-content input:active{
    transform: scale(0.96);
    background-color: #4d4d4e;
 }
.send{
    width: 40px;
    height: 40px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    transform: scale(0.95);
    border-radius: 12px;
    background-color: #2d2d2e;
}
.send svg{
    width: 40px;

}
.send:hover{
    transform: scale(1);
    background-color: #3d3d3e;
}
.send:active{
    transform: scale(0.93);
    background-color: #4d4d4e;
}
.unverified {
    color: red;
    font-weight: bold;
}
.note-display {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}
.note{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 5px;
    user-select: none;
    pointer-events: none;
}
.note-header{
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 5px;
}

.note-pp{
    width: 32px;
    height: 32px;
    border-radius: 32px;
    vertical-align: middle;
}
.note-name{
    font-size: 10.5pt;
    text-shadow: 0 0 5px rgba(0, 0, 0, 1), 0 0 8px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 1);
}

.note-text{
    color: #fff;
    font-size: 10.5pt;
    padding: 7.5px;
    background-color: #252525ba;
    border-radius: 7.5px;
    border-top-left-radius: 0;
    white-space: nowrap;
    font-weight: 500;
}


.note-modal-content.vibrate{
    animation: infinite vibrate 0.08s ease-in-out;
}
@keyframes vibrate {
    0%{
        transform: rotate(-2deg);
    }
    50%{
        transform: rotate(1.5deg);
    }
    100%{
        transform: rotate(-1deg);
    }
}
.fade-inn {
    opacity: 0;
    animation: fadeInn 0.3s forwards ease;
}

.fade-outt {
    animation: fadeOutt 0.3s forwards ease-out;
}

@keyframes fadeInn {
    from { opacity: 0; transform: translateX(-15px);}
    to { opacity: 1; transform: translateX(0px);}
}

@keyframes fadeOutt {
    0% { opacity: 1; transform: scale(1);}
    33.3%{ opacity: 1; transform: scale(1.05);}
    100% { opacity: 0; transform: scale(0.9);}
}


p img {
    max-width: 100%;
    height: auto;
    display: block;
    float: left;
}

.main-video-container {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; 
    pointer-events: none; 
    animation: vv 1s forwards;
}
@keyframes vv {
    from{opacity:0;}
    to{opacity: 1;}
}
#background-video {
    opacity: 0.85;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}
.mainPostContainer {
    padding-top: 1000px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    overflow: visible; 
    width: 75%;
    margin: 0 auto;
    height: max-content;
    min-height: 720px;
}
.mainPostWrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 0 150px 0; 
    gap: 15px; 
    flex-wrap: wrap; 
}
.mainPostLink {
    position: absolute;
    font-size: 28pt;
    font-weight: 600;
    top: 0;
    left: 14%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 100;
    text-decoration: underline 2px transparent;
    transition: 0.35s ease-out;
}
.mainPostLink:hover {
    text-decoration: underline 2px #e8e8e8;
}
.mainPost {
    width: calc(33.33% - 20px);
    height: fit-content; 
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    transition: transform 0.35s ease-out;
    z-index: 1;
}
.mainPost:nth-child(2) {
    transform: translateY(300px);
}
.mainPost:nth-child(3) {
    transform: translateY(200px);
}
.mainPost .post{
    margin: 0;
}
.footer {
    position: relative;
    width: 100%;
    margin-top: 10px;
    padding: 15px 0 30px 0px;
    background-color: #1c1c1e;
    animation: modalFooter forwards 1s;
}
#yavuz{
    opacity: 0.5;
    position: absolute;
    bottom: 10px;
    right: 15px;
    display: flex;
    flex-direction: column;
    padding: 6px 6px;
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
    background-color: #d1d1d6;
    transition: 0.2s ease;
    transform: scale(0.97);
}    
#yavuz .material-symbols-rounded {
font-size: 11pt;
position: absolute;
top: 6px;
right:6px;
color: #333336!important;
}
#yavuz:hover{
    background-color: #b2b2b7; 
    transform: scale(1);
    opacity: 1;
}
#yavuz:active{
    transform: scale(0.95);
}
#yavuz p{
    font-size: 10pt;
    font-weight: 300;
    color: #333336!important;
}
#yavuz strong{
    color: #333336!important;
    margin-top: -7px;
    font-family: "Roboto Slab", sans-serif;
    font-size: 17pt;
    font-weight: 500;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin: 0 auto;
}
.footer-left{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.email-link {
    font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px;
    border: none;
    border-radius: 15px;
    color: #333336;
    background-color: #d1d1d6;
    cursor: pointer;
    transition: 0.1s ease;
    text-align: center;
    user-select: none;
    white-space: nowrap;
    outline: none;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin: 4px;
    transform: scale(0.97);
}
.email-link p{
    font-weight: 700;user-select: none;
    color: #333336!important;
}
.email-link:hover,
.social-link:hover,
.yukari-cik:hover {
    background-color: #b2b2b7; 
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15); 
    transform: scale(1);
}
.email-link:active,
.social-link:active,
.yukari-cik:active {
    transform: scale(0.95);
}
.social-link {
    font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px;
    border: none;
    border-radius: 15px;
    color: #333336;
    background-color: #d1d1d6;
    cursor: pointer;
    transition: 0.1s ease;
    text-align: center;
    user-select: none;
    white-space: nowrap;
    outline: none;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin: 4px;
    transform: scale(0.97);
}
.social-link p{
    font-weight: 700;
    color: #333336!important;
    user-select: none;
}

.yukari-cik {
    display: flex;
    align-items: center;
    background-color: transparent;
    width: max-content;
    height: max-content;
    border-radius: 18px;
    transform: scale(0.97);
    transition: 0.2s;
    background-color: #d1d1d6;
}

.yukari-cik-icon{
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
}
.yukari-cik .svg-frame{
    width: 48px;
    height: 48px;
}

.paper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    padding: 0 10% ;
    margin: 0 auto 0 auto;
    background-color: transparent;
    border-radius: 0px;
    
    animation: paperComing forwards 0.75s;
}
.paper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.paper-content {
    flex: 1;
    color: white;
    width: 100%;
}
#paper-content-2 {
    display: block;
    width: 100%;
}
.quick-info {
    position: relative; 
    width: 29%;
    margin: 0 0 0 30px;
    text-align: center;
    color: white;
    background-color: #70707070;
    backdrop-filter: blur(10px);
    border-radius: 14px;
    overflow: hidden;
}

@keyframes paperComing {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.paper-name {
    font-family: "Roboto Slab", sans-serif;
    font-weight: 600;
    font-size: 2.7em;
}

.paper-title {
    padding: 0px 10px 10px 10px;
    font-family: "Roboto Serif", serif;
    font-weight: 500;
    font-size: 1.2rem;
    border-top: none;
}

.pp {
    width: 100%;
    height: auto;
    border-radius: 14px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-position: center;
    background-size: contain;
}

.quick-info-table {
    margin-top: 7px;
    border: 1px solid #707070;
    border-radius: 14px;
    width: 100%;
    font-size: 1em;
}
.table-title{
    margin-top: 18px;
}
.quick-info-table td,.quick-info-table th {
    text-align: left;
    padding: 10px;
}
.quick-info-table tr:nth-child(even) {
    background-color: #252525;
}

.paper-content h1 {
    margin-top: 0;
    font-size: 2rem;
    font-family: "Roboto Serif", serif;
    font-weight: 600;
    border-bottom: 2px solid #707070;
    padding-bottom: 2px;
    margin-bottom: 10px;
    color: white;
}
.paper-content h2 {
    margin-top: 0;
    font-size: 2rem;
    padding-bottom: 2px;
    font-family: "Roboto Serif", serif;
    border-bottom: 2px solid #707070;
    font-weight: 600;
    color: white;
}
.paper-content h1 a{
    margin: 0 3px;
    font-size: 14pt;
    color: lightgray;
    font-weight: 500;
    text-decoration: lightgray;
}
.paper-content h1 a:hover{
    text-decoration: underline 1.3px lightgray;
}
.paper-content h1 a .material-symbols-rounded{
    color: lightgray;
}
.paper-content strong{
    font-size: 1.30rem;
}
.paper-content p {
    margin-bottom: 20px;
    
    font-size: 1.2rem;
    color: white;
}
.paper a {
    position: relative;
    color: white;
    text-underline-offset: -1px;
    text-decoration: underline 1.3px #608dff00;
    transition: 0.2s;
    padding-right: 14px;
}
.paper a .material-symbols-rounded {
    font-variation-settings:
        'FILL' 0,
        'wght' 500,
        'GRAD' 0,
        'opsz' 20;
    font-size: 10pt;
    position: absolute;
    top: 0;
    margin-left: 1px;
}
.paper br {
    margin: 5px 0 5px 0;
}
.paper a:hover{
    text-underline-offset: 2px;
    text-decoration: underline 1.3px white;
}
.table-wrapper {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* İki sütun */
    gap: 20px;
}
.paper-table {
    border-collapse: collapse;
    background-color: #70707050;
    backdrop-filter: blur(10px);
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}
.paper-table th {
    background-color: #70707070;
    backdrop-filter: blur(10px);
    font-weight: bold;
    color: white;
    padding: 10px;
    font-size: 16pt;
    text-align: center;
}
.paper-table tbody {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 270px;
    overflow-y: auto;
}
.paper-table td {
    color: white;
    padding: 10px;
    font-size: 14pt;
    width: 100%;
    text-align: center;
}
.paper-table tbody::-webkit-scrollbar {
    width: 4px;
    margin-right: 2px;
}
.paper-table tbody::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 6px 6px 6px #ffffff45; 
    border-radius: 3px;
}
.paper-table tbody::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 6px 6px 6px transparent; 
}
#aboutInfo{
    margin-top: 20px;
    color: #ddd;
    text-align: right;
    font-size: 10pt;
    font-family: 'Roboto Mono', sans-serif;
}
#aboutInfo strong{
    color: white;
    font-size: 10pt;
}

.portfolio-grid {
padding:  0;
column-count: 3; 
column-gap: 15px;
width: 85%;
min-height: 600px;
margin: 0 auto 10px auto;
}
.post {
width: 100%;
height: auto;
min-height: 240px;
break-inside: avoid;
cursor: pointer;
position: relative;
background-color: transparent;
overflow: hidden;
margin-bottom: 15px;
border-radius: 14px;
user-select: none;
transform: scale(1);
transition: 0.2s ease;
}
.post.loaded{
width: fit-content;
height: fit-content;
min-height: 0!important;
}
.post p{
z-index: 15;
position: absolute;
left: 50%;
bottom: 0;
transform: translate(-50%, 40px);
padding: 8px 12px;
text-align: center;
opacity: 1;
width: 100%;
background-color: rgba(220, 220, 225, 0.25); 
backdrop-filter: blur(10px);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
font-size: 12pt;
font-weight: 500;
transition: 0.3s ease-in-out;
font-weight: bold;
backdrop-filter: blur(3px);
filter: blur(7px);
}
.post:hover p{
opacity: 1;
transform: translate(-50%, 0);
filter: blur(0);
}

.post:active{
    transform: scale(0.99);
}
.loading-effect {
    opacity: 1;
    transition: 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    animation: shimmer 1.75s infinite;
    z-index: 2;
}
.post img, .post .video-thumbnail, .post video {
    width: 100%;
    height: auto;
    vertical-align: middle!important;
    opacity: 0;
    transition: 0.5s;
}

.post.loaded img, .post.loaded .video-thumbnail,
.post.loaded video {
    opacity: 1;
}
.post.loaded .loading-effect{
    opacity: 0;
}

.videoIcon{
z-index: 15;
filter: blur(0px);
transition: 0.3s ease;
opacity: 1;
position: absolute;
top: 14px;
right: 14px;
display: flex;
align-items: center;
background-color: transparent;
width: max-content;
height: max-content;
}
.video-icon {
width: 48px;
height: auto;
background-size: contain;
}
#video-icon-svg{
    fill: #d1d1d6;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    z-index: 1000;
    animation: fadeInModal 0.5s;
    transition: 0.2s;
    transform: scale(1);
    user-select: none;
}

@keyframes fadeInModal {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    66.6%{
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.modal.close{
    opacity: 0;
    transform: scale(1.05);
}
#modalContent {
    transition: 0.4s ease;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    width: min-content;
    max-width: 100%;
}
.media-container {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    user-select: none;
    break-inside: avoid;
    vertical-align: middle!important;
}
.modal.loaded .modal-loading-effect {
    opacity: 0;
}
.modal.loaded #modalMedia{
    opacity: 1;
}
.modal.loaded .byemreCopyright, .modal.loaded #infoOriginally{
    opacity: 0.7;
}
#modalMedia{
    opacity: 0;
    max-height: 72vh;
    max-width: 95vw;
    transition: opacity 1s;
    user-select: none;
    vertical-align: middle!important;
    z-index: 9999;
}
#infoOriginally{
    position: absolute;
    bottom: 5px;
    right: 7.5px;
    font-size: 12px;
    font-weight: 400;
    color: white;
    opacity: 0;
}
.zoomable-image {
    cursor: zoom-in;
}
.zoomed {
    transform: scale(2);
    transform-origin: top left;
    cursor: zoom-out;
}
.byemreCopyright {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 140px;
}

.fade-inb {
    animation: fadeInnb 0.3s forwards ease;
}

.fade-outb {
    animation: fadeOutb 0.3s forwards ease-out;
}
@keyframes fadeInnb {
    from { opacity: 0; transform: translateX(-15px);}
    to { opacity: 0.7; transform: translateX(0px);}
}

@keyframes fadeOutb {
    0% { opacity: 0.7; transform: scale(1);}
    33.3%{ opacity: 0.7; transform: scale(1.05);}
    100% { opacity: 0; transform: scale(0.9);}
}
.modal-loading-effect {
    opacity: 1;
    transition: 1s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #b2b2b7;
    backdrop-filter: blur(15px);
    animation: shimmer 1.75s infinite;
}
@keyframes shimmer {
    0% {
        background-color: #b2b2b725;
    }

    50% {
        background-color: #d1d1d675;
    }

    100% {
        background-color: #b2b2b725;
    }
}


.modalHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
    padding: 10px 0;
}

.modalHeaderTexts {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.modalHeader h2 {
    font-size: 16pt;
}
.arrows{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    z-index: 10;
}
.arrow{
    position: relative;
    padding: 11px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2d2d2e;
    transition: 0.2s;
    width: 42px;
    height: 42px;
    transform: scale(0.97);
    cursor: pointer;
}
.arrow:hover {
    background-color: #3d3d3e;
    transform: scale(1);
}
.arrow:active {
    transform: scale(0.94);
}
.arrow svg{
    fill:#fff;
}
#upArrow{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#downArrow{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.modal-footer {
    background-color: transparent;
    padding: 0;
    margin: 5px auto;
    width: 100%;
    height: max-content;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    animation: footerComing 1s forwards;
    z-index: 10;
    gap: 20px;
}
.errorInfo {
    position: relative;
    margin: 10px 0;
    background-color: #505050;
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
    border-top-left-radius: 0;
    
    font-size: 12pt;
    font-weight: 500;
    animation: errorInfo 0.55s;
    flex-wrap: nowrap;
    width: 100%;
    height: min-content;
    transition: 0.3s;
}

@keyframes errorInfo {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }

    25% {
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.errorInfo p {
    display: inline;
    flex-wrap: nowrap;
    user-select: none;
}

.errorInfo .km {
    position: absolute;
    top: 4px;
    left: 5px;
    font-size: 9pt;
    
    font-weight: 400;
    opacity: 0.7;
}

.iconGroup {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#bold {
    font-weight: 700 !important;
}

.i {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2d2d2e;
    border-radius: 26px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    user-select: none;
    transition: 0.2s;
    transform: scale(0.98);
}

.i-icon {
    position: absolute;
    width: 34px;
    height: 34px;
}

.i span {
    color: #fff;
    font-family: "Roboto Slab", sans-serif;
    font-weight: 700;
    font-size: 18pt;
    text-align: center;
}

.i:hover {
    background-color: #3d3d3e;
    transform: scale(1);
}
.i:active{
    transform: scale(0.96);
}

@keyframes iTooltip {
    0% {
        border-radius: 10px;
    }

    100% {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
}
.modal .cat {
height: fit-content;
width: max-content;
white-space: nowrap;
font-size: 12pt;
font-weight: 400;
transition: 0.2s;
color: white;
text-align: center;
}
.geri-don{
display: flex;
justify-content:center;
align-items: center;
border: none;
width: max-content;
height: fit-content;
white-space: nowrap;
cursor: pointer;
user-select: none;
border-radius: 14px;
padding: 10px 15px;
color: #fff;
background-color: #2d2d2e;
transition: all 0.2s;
font-size: 15px;
font-weight: 700!important;
transform: scale(1);
}    
.geri-don-icon {
width: 24px;
height: 20.9px;
cursor: pointer;
background-color: transparent;
transition: background-color 0.3s;
}
.geri-don:hover {
background-color: #3d3d3e;
transform: scale(1.03);
}
.geri-don:active{
    transform: scale(0.97);
}
.createNote {
    display: flex;
    align-items: center;
    background-color: transparent;
    width: max-content;
    height: max-content;
    border-radius: 26px;
    position: relative;
    transition: 0.1s ease;
    color: #fff;
    background-color: #2d2d2e;
    transform: scale(0.98);
    }
    .createNote:hover {
        background-color: #3d3d3e;
        transform: scale(1);
    }
    .createNote:active{
        transform: scale(0.96);
    }
    .createNote-icon {
    width: 46px;
    height: 46px;
    position: relative;
    cursor: pointer;
    border-radius: 25px;
    }
.clap {
display: flex;
align-items: center;
background-color: transparent;
width: max-content;
height: max-content;
cursor: pointer;
border-radius: 14px;
padding-right: 14px;
transition: 0.1s ease;
color: #fff;
background-color: #2d2d2e;
transform: scale(0.98);
}
.clap:hover{
background-color: #3d3d3e;
transform: scale(1);
}
.clap:active{
    transform: scale(0.96);
}
.clap-icon {
width: 46px;
height: 46px;
background-size:contain;
cursor: pointer;
background-color: #3d3d3e00;
border-radius: 25px;
transition: all 1s;
transform: scale(0.98);
}
.clap-icon:hover{
    transform: scale(1);
    background-color: #4d4d4e;
}
.clap-icon:active{
    background-color: #5d5d5e;
    transform: scale(0.96);
}
.clap-count {
position: relative;
will-change: transform;
width: max-content;
max-width: 75px;
font-weight: 700!important;
font-size: 13pt;
color: #fff;
user-select: none;
cursor: pointer;
z-index: 1;
margin-top: 1px;
}
.view {
display: flex;
align-items: center;
background-color: transparent;
width: max-content;
height: max-content;
border-radius: 14px;
padding-right: 15px;
transition: 0.1s ease;
color: #fff;
background-color: #2d2d2e;
transform: scale(0.98);
}
.view:hover{
background-color: #3d3d3e;
transform: scale(1);
}
.view:active{
    transform: scale(0.96);
}
.view-icon {
width: 46px;
height: 46px;
background-size:contain;
cursor: pointer;
background-color: transparent;
border-radius: 25px;
}
.view-count {
will-change: transform;
width: max-content;
max-width: 75px;
font-weight: 700!important;
font-size: 13pt;
color: #fff;
user-select: none;
z-index: 1;
}
.share {
display: flex;
align-items: center;
background-color: transparent;
width: max-content;
height: max-content;
border-radius: 26px;
position: relative;
transition: 0.1s ease;
color: #fff;
background-color: #2d2d2e;
transform: scale(0.98);
}
.share:hover {
    background-color: #3d3d3e;
    transform: scale(1);
}
.share:active{
    transform: scale(0.96);
}
.share-icon {
width: 46px;
height: 46px;
position: relative;
cursor: pointer;
border-radius: 25px;
}
.svg-frame {
position: absolute;
top: 0;
left: 0;
width: 46px;
height: 46px;
opacity: 0;
user-select: none;
}
.svg-frame-1{
opacity: 1;
}
.animate .svg-frame-1 { opacity: 0;}
.animate .svg-frame-2 { animation: fade 0.25s linear 0.05s 1; }
.animate .svg-frame-3 { animation: fade 0.25s linear 0.1s 1; }
.animate .svg-frame-4 { animation: fade 0.25s linear 0.15s 1; }
.animate .svg-frame-5 { animation: fade 0.25s linear 0.2s 1; }   
@keyframes fade {
0%, 100% { opacity: 0; }
30%, 60% { opacity: 1; }
}
@keyframes fade-in {
    0%{
        opacity: 0;
        transform: scale(0.85);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes fade-out {
    0%{
        opacity: 1;
        transform: scale(1);
    }
    100%{
        opacity: 0;
        transform: scale(0.85);
    }
}
#cookieNotification.fade-in{
    animation: fade-in 0.3s forwards;
}
#mobileDataNotification.fade-in{
    animation: fade-in 0.3s forwards;
}
#cookieNotification.fade-out{
    animation: fade-out 0.3s forwards;
}
#mobileDataNotification.fade-out{
    animation: fade-out 0.3s forwards;
}
#notifications {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
}
.notification {
background: #1c1c1e;
color: white;
padding: 20px;
margin-top: 10px;
border-radius: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: fit-content;
overflow: hidden;
opacity: 1;
transform: translateY(0);
transition: all 1s ease;
animation: fade-in 0.5s forwards;
}
.notification.hidden {
display: none;
}
.notification h4 {
margin: 0 0 5px;
font-size: 16px;
}
.notification p {
width: fit-content;
max-width: 350px;
height: auto;
margin: 0 0 15px;
font-size: 12pt;
padding-right:10px;
font-weight: 500;
}
.notification a {
font-size: 13pt;
font-weight: 700;
text-decoration: underline 1.3px #0a84ff;
color: #0a84ff;
text-underline-offset: 2px;
}
.notification button {
text-align: center;
transition: 0.2s;
display: flex;
align-items: center;
justify-content: center;
transform: scale(0.96);
}

.button-b {
    font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
    font-size: 12pt;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 14px;
    background-color: #2c2c2e;
    color: #e8edf0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    text-align: center;
    user-select: none;
    outline: none;
    transform: scale(0.98);
    white-space: nowrap;
}

.button-b.blue {
    color: #0a84ff;
    background-color: #262f38;
}
.button-b.blue span{
    color: #0a84ff;
}
.button-b.blue:hover {
    background-color: #2d3a47;
}
.button-b.orange {
    color: #ffa10a;
    background-color: #403b2c;
}
.button-b.orange:hover {
    background-color: #504932;
}
.button-b.red {
    color: #ff453a;
    background-color: #342b2b;
}
.button-b.red:hover {
    background-color: #463232;
}
.bred {
    color: #ff453a;
    background-color: #45353590;
}
.bred:hover {
    background-color: #503c3c90;
}
.button-b.green {
    color: #30d158;
    background-color: #213727;
}
.button-b.green:hover {
    background-color: #284630;
}
.button-b.silver {
    color: #d1d1d6;
    background-color: #2d2d2e;
}
.button-b:hover {
    background-color: #3a3a3c;
    transform: scale(1);
}
.button-b:active{
    transform: scale(0.96);
}

.notification button.loading {
background-color: #2d3a47;
pointer-events: none;
}
.notification button span {
margin: 0;
padding: 0; 
}
.notification button span.hidden {
display: none;
}
.notification button:hover {
background-color: #2d3a47;
transform: scale(1);
}
.notification button:active {
transform: scale(0.94);
}
@keyframes spin {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
    }
    .loading-icon {
    border: 4px solid transparent;
    border-top: 4px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    }
@keyframes fadeOutUp {
0% {
scale: 1;
transform: translateY(0);
opacity: 1;
user-select: none;
cursor:progress;
}
100% {
opacity: 0;
scale: 0.9
}
}
.fade-out {
    animation: fadeOutUp 0.3s forwards;
}
@media only screen and (max-width: 800px) {
#notifications {
position: fixed;
bottom: 20px;
right: 10px;
z-index: 1000;
}
.notification p {
width: fit-content;
max-width: 90vw;
}
}
#yavuz .material-symbols-rounded {
font-size: 11pt;
position: absolute;
top: 6px;
right:6px;
color: #ffffff50;
}
