
body {
    background-color: #151a26;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;

}

/* Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #151a26;
}
::-webkit-scrollbar-thumb {
    background: #242c3d;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #374151;
}
.scrollbar-none::-webkit-scrollbar {
    display: none;
}
.scrollbar-none {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Custom Scrollbar for inner boxes */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.08) transparent;
}
.custom-scrollbar::-webkit-scrollbar {
    width: 5px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Tab Active Underline */
.tab-btn {
    position: relative;
    transition: all 0.2s ease;
}
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF7A1A;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.tab-btn.active {
    color: #ffffff;
    font-weight: 700;
}
.tab-btn.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Ambient subtle shadows */
.premium-shadow {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 1px rgba(255, 122, 26, 0.1);
}

/* Active Variant Highlight */
.active-variant-card {
    border-color: #FF7A1A !important;
    background-color: rgba(255, 122, 26, 0.06);
    box-shadow: 0 4px 15px rgba(255, 122, 26, 0.12);
}

/* BuyBox E-pin Card */
.epin-card-container {
    perspective: 1000px;
}
.epin-card {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.epin-card:hover {
    transform: rotateY(-8deg) rotateX(6deg) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 122, 26, 0.25);
    border-color: rgba(255, 122, 26, 0.35) !important;
}
.epin-card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 255, 255, 0) 50%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 25;
}
.epin-card:hover .epin-card-shine {
    transform: translate(10%, 10%) rotate(45deg);
}

/* Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 100%);
    transform: skewX(-25deg);
    transition: none;
}
.btn-shine:hover::after {
    animation: shine 0.75s ease;
}
@keyframes shine {
    100% { left: 125%; }
}

/* Pulsing Status Dot */
.online-pulse {
    position: relative;
}
.online-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-ring 1.8s infinite;
    opacity: 0.45;
    left: 0;
    top: 0;
}
@keyframes pulse-ring {
    0% { transform: scale(0.75); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Custom top bar simulator styling */
.top-bar {
    background-color: #0b0e14;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    font-size: 12px;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.firsat-tag {
    background-color: rgba(255, 70, 85, 0.15);
    color: #FF4655;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 0.05em;
}
.announcement-link {
    color: #9ca3af;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.announcement-link:hover {
    color: #ffffff;
}
.dot-pulse {
    width: 6px;
    height: 6px;
    background-color: #FF4655;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.dot-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FF4655;
    border-radius: 50%;
    animation: ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
    75%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #9ca3af;
}
.top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar-link:hover {
    color: #ffffff;
}
.simulator-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2px;
    border-radius: 999px;
}
.simulator-btn {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    color: #9ca3af;
    transition: all 0.2s ease;
}
.simulator-btn:hover {
    color: #ffffff;
}
.simulator-btn.active {
    background-color: #FF7A1A;
    color: #ffffff;
}

/* 1440px max width correction */
@media (min-width: 1440px) {
    .max-w-site {
        max-width: 1440px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

section.navigationBar span.advert-views {
    position: absolute;
    top: -11px;
    right: 0;
    padding: 0 15px;
    font-size: 13px;
    line-height: 40px;
    min-width: 70px;
    text-align: center;
    color: #9eadd1;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    font-weight: 700;
    white-space: nowrap;
}

/* Header matching arama.html */
.main-header {
    background-color: #111620;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 45;
}
.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #ffffff;
    user-select: none;
}
.logo-orange {
    color: #FF7A1A;
}
.search-box-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 999px;
    padding: 6px 8px 6px 16px;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(14, 18, 25, 0.75) 0%, rgba(21, 26, 38, 0.75) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
}
.search-box-wrapper:focus-within {
    transform: translateY(-1px) scale(1.015);
    border-color: rgba(255, 122, 26, 0.5);
    background: linear-gradient(135deg, rgba(20, 26, 36, 0.96) 0%, rgba(14, 18, 25, 0.98) 100%);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.75), 
                0 0 0 2px rgba(255, 122, 26, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 0.05);
}
.search-icon-left {
    color: #9ca3af;
    flex-shrink: 0;
    transition: color 0.2s ease;
}
.search-box-wrapper:focus-within .search-icon-left {
    color: #FF7A1A;
}
#searchInput {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}
#searchInput::placeholder {
    color: #6b7280;
}
.search-submit-btn {
    background-color: #FF7A1A;
    color: #ffffff;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 122, 26, 0.15);
    flex-shrink: 0;
}
.search-submit-btn:hover {
    background-color: #e0650f;
}

.balance-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
    color: #10b981;
}
.icon-btn-header {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.2s ease;
}
.icon-btn-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}
.header-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #2563eb;
    color: white;
    font-size: 9px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #111620;
}
.avatar-btn {
    position: relative;
    cursor: pointer;
}
.avatar-btn img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}
.avatar-btn:hover img {
    border-color: #FF7A1A;
}
.avatar-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border: 2px solid #111620;
    border-radius: 50%;
}
.primary-add-btn {
    background-color: #FF7A1A;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(255, 122, 26, 0.15);
}
.primary-add-btn:hover {
    background-color: #e0650f;
}

/* Interactive gallery elements */
.gallery-thumb {
    position: relative;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    z-index: 1;
}
.gallery-thumb.active {
    border-color: #FF7A1A;
    box-shadow: 0 0 10px rgba(255, 122, 26, 0.4);
    transform: scale(1.05);
  
}
.gallery-main-container:hover .gallery-control {
    opacity: 1;
}

.gallery-main-container--single {
    min-height: 280px;
}

@media (min-width: 768px) {
    .gallery-main-container--single {
        min-height: 340px;
    }
}

.gallery-main-container--single #gallery-main-img {
    max-height: min(540px, 65vh);
}

@media (min-width: 1024px) {
    .post-detail-sidebar {
        top: var(--pd2-sticky-offset, 6rem);
        transition: top 0.25s ease;
    }
}

.miniBadges {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    overflow: visible;
}

.miniBadges .Badge-15 {
    width: 22px;
    height: 22px;
    margin: 0;
    float: none;
    display: inline-block;
    background-size: cover !important;
    background-color: #1d2333 !important;
    line-height: 22px;
    font-size: 9px;
    text-align: center;
    font-weight: bold;
    color: #463606;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    overflow: visible;
}

.miniBadges [data-tooltip] {
    font-size: 0.8rem;
}

.miniBadges [data-tooltip]::after {
    display: inline-block;
    white-space: pre-line;
    max-width: 340px;
    width: max-content;
    box-sizing: border-box;
    font-size: inherit;
    line-height: 1.45;
    padding: 0.75em 1em;
    text-align: left;
    font-weight: 400;
    z-index: 100;
}

.miniBadges [data-tooltip]::before {
    z-index: 100;
    font-size: inherit;
}

.boost-container .swal2-popup {
    width: 70% !important;
    max-width: 900px;
}

.boost-container .swal2-html-container {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    text-align: left;
}

.boost-container .boost-content img {
    width: 60px;
    height: 60px;
    float: left;
}

.boost-container .boost-content {
    background: none;
    border-radius: 6px;
    padding: 15px 0;
    text-align: left;
    color: #d1deff;
}

.boost-container .boost-content h4 {
    margin-top: 0;
    color: #fff;
}

.boost-container .boost-content .well img {
    height: 70px;
    width: 70px;
    max-width: 70px;
    float: left;
    position: absolute;
    top: 60px;
    left: 20px;
    object-fit: contain;
}

.boost-container .boost-content .well h3 {
    margin-top: 0;
    color: #fff;
}

.boost-container .boost-content .well p {
    color: #adc4ff;
}

.boost-container .boost-content .ui.dropdown.selection {
    background: #ffffff;
    padding: 9px 30px;
    min-height: 20px;
    min-width: 240px;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 5px 5px 0 rgba(85, 85, 85, 0.06) !important;
}

.boost-container .boost-content .well {
    position: relative;
    min-height: 140px;
    background: #171b26;
    padding: 15px 20px 15px 130px;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: visible;
    box-sizing: border-box;
}

.boost-container .radio-boost-btns {
    margin-top: 20px;
}

.boost-container .radio-boost-btns label {
    height: auto;
    min-height: 35px;
    display: inline-block;
}

.boost-container .radio-boost-btns label input[type="radio"] {
    display: none;
}

.boost-container .radio-boost-btns label span {
    display: inline-block;
    font-weight: normal;
    background: rgb(31 51 104 / 23%);
    padding: 5px 10px;
    border-radius: 4px;
    border: 2px solid #7494b3c4;
    color: #98ceff;
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
}

.boost-container .radio-boost-btns input:checked ~ span {
    background: rgb(149 188 227 / 80%);
    border: 2px solid #27659f;
    color: #141e28;
}

.boost-container .radio-boost-btns input:checked ~ span::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    margin-right: 5px;
}

.boost-container .boost-well .radio-boost-btns span {
    filter: hue-rotate(40deg);
}

.boost-container .onecikan-well .radio-boost-btns span {
    filter: hue-rotate(180deg);
}

.boost-container .pinned-well .radio-boost-btns label span {
    filter: hue-rotate(-10deg);
}

.boost-container .request-well .radio-boost-btns label span {
    filter: hue-rotate(100deg);
}

@media only screen and (max-width: 768px) {
    .boost-container .swal2-popup {
        width: calc(100% - 30px) !important;
        max-width: calc(100% - 20px) !important;
        padding: 5px;
    }

    .boost-container .boost-content .well {
        padding: 15px;
        padding-top: 100px;
    }

    .boost-container .boost-content .well img {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100px !important;
        object-fit: contain;
        padding: 15px;
        float: none;
        max-width: 100%;
    }

    .boost-container {
        width: calc(100% + 10px);
        padding: 0;
        margin: 0;
        display: block;
    }
}

.pd2-seo-heading {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* PostDetail2: Asistan + mobil kısayol butonu mobilde gizle */
@media (max-width: 1024px) {
    body[data-page="PostDetail2"] #ip-asistan-launcher-wrap,
    body[data-page="PostDetail2"] .fixed-left-menu-mobile,
    body[data-page="PostDetail2"] .fixed-left-menu-mount {
        display: none !important;
    }
}
