
.custom-navbar .brand-logo svg.icon,
.custom-navbar .nav-link:hover svg.icon {
    fill: var(--primary-color) !important;
}
.chat-card,
.custom-navbar,
.float-badge {
    backdrop-filter: blur(10px);
}
.btn-store,
a {
    text-decoration: none;
}
.back-to-top,
.input-cursor-pointer {
    cursor: pointer;
}
:root {
    --bg-color: #f8f9fa;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --primary-color: #ff4757;
    --primary-gradient: linear-gradient(135deg, #ff4757, #ff6b81);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: #fffafc;
    color: var(--text-dark);
}
@keyframes moveDots {
    0% {
        transform: translateY(0) rotate(0);
    }
    100% {
        transform: translateY(50px) rotate(10deg);
    }
}
.hero-section {
    position: relative;
    padding-bottom: 120px;
    z-index: 1;
}
.bg-red-shape,
.floating-bubble,
.hero-visual {
    position: absolute;
    z-index: 0;
}
.bg-red-shape {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 0 0 50% 50%/0 0 12% 12%;
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.2);
    margin-bottom: -2px;
}
.hero-visual {
    animation: 5s ease-in-out infinite floatObjVars;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    opacity: 0.9;
}
.visual-left {
    top: 25%;
    left: 2%;
    width: 250px;
    --rot: -10deg;
}
.visual-right {
    top: 30%;
    right: 2%;
    width: 280px;
    animation-delay: -2.5s;
}
.floating-bubble {
    color: rgba(255, 255, 255, 0.15);
    animation: 6s ease-in-out infinite floatObjVars;
}
.avatar-container,
.chat-card {
    position: relative;
    z-index: 10;
}
.bubble-1 {
    top: 15%;
    left: 15%;
    font-size: 4rem;
    animation-delay: 0s;
}
.bubble-2 {
    top: 40%;
    right: 15%;
    font-size: 7rem;
    animation-delay: -2s;
    --sx: -1;
}
.bubble-3 {
    bottom: 25%;
    left: 30%;
    font-size: 3rem;
    animation-delay: -4s;
}
@keyframes floatObjVars {
    0%,
    100% {
        transform: translateY(0) rotate(var(--rot, 0deg)) scaleX(var(--sx, 1));
    }
    50% {
        transform: translateY(-20px) rotate(calc(var(--rot, 0deg) + 5deg)) scaleX(var(--sx, 1));
    }
}
.custom-navbar {
    padding: 15px 30px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}
@media (max-width: 991px) {
    .custom-navbar {
        margin-top: 10px;
        border-radius: 20px;
        padding: 5px;
    }
    .navbar-collapse {
        padding-top: 15px;
    }
    .chat-card {
        padding: 20px;
    }
    .mgizle {
        display: none !important;
    }
}
@media (min-width: 991px) {
    .chat-card {
        padding: 40px;
    }
}
.btn-custom,
.btn-custom-secondary {
    padding: 14px 30px;
    font-weight: 700;
    transition: 0.3s;
}
.custom-navbar .nav-link {
    color: #555 !important;
    font-weight: 700;
    margin-left: 15px;
    transition: 0.3s;
    font-size: 1rem;
}
.custom-navbar .nav-link svg.icon {
    color: var(--primary-color) !important;
    margin-right: 6px;
    margin-top: -3px;
    font-size: 1.1rem;
    vertical-align: middle;
    transition: none;
}
.custom-navbar .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}
.custom-navbar .brand-logo {
    font-weight: 800;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.custom-navbar .brand-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.custom-navbar .brand-logo svg.icon {
    margin-right: 8px;
    font-size: 1.6rem;
}
.custom-navbar .brand-logo img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
.btn-custom {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
}
.btn-custom:hover {
    box-shadow: 0 12px 25px rgba(255, 71, 87, 0.5);
    color: #fff;
}
.btn-custom-secondary {
    background: #1e293b;
    color: #fff;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.2);
}
.chat-bubble-mini,
.float-badge {
    color: var(--text-dark);
    padding: 10px 18px;
    font-size: 0.9rem;
}
.btn-custom-secondary:hover {
    background: #0f172a;
    color: #fff;
    box-shadow: 0 12px 25px rgba(30, 41, 59, 0.4);
}
.chat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.95));
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(255, 71, 87, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
}
.chat-title-styled {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.custom-input-wrapper {
    background-color: #fff;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    transition: 0.3s;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}
.custom-input-wrapper:focus-within {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.1);
}
.custom-input-wrapper .input-icon {
    color: var(--primary-color);
    padding: 14px 16px;
    font-size: 1.25rem;
    transition: 0.3s;
}
.custom-input-wrapper:focus-within .input-icon {
    filter: drop-shadow(0 3px 6px rgba(255, 71, 87, 0.3));
}
.custom-input-wrapper input {
    background: 0 0;
    border: none;
    box-shadow: none !important;
    font-size: 1.05rem;
}
.floating-avatar-1 {
    animation: 4s ease-in-out infinite floatAvatar;
}
.floating-avatar-2 {
    animation: 5s ease-in-out -2s infinite floatAvatar;
}
@keyframes floatAvatar {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
@keyframes floatObj {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}
@keyframes floatSubtle {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
.float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    font-weight: 800;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: 6s ease-in-out infinite floatSubtle;
}
.float-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
    background: rgba(255, 71, 87, 0.1);
    padding: 6px;
    border-radius: 50%;
}
.chat-bubble-mini {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    z-index: 11;
}
.blog-img-wrapper,
.blog-section {
    position: relative;
    overflow: hidden;
}
.chat-bubble-mini::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    z-index: -1;
    transform: rotate(45deg);
}
.left-bubble {
    top: 10%;
    right: -25px;
}
.left-bubble::before {
    bottom: -6px;
    left: 20px;
}
.right-bubble {
    bottom: 20%;
    left: -30px;
}
.right-bubble::before {
    top: -6px;
    right: 20px;
}
.store-download-section {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.store-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
}
.btn-store {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 14px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
    width: 50%;
    color: #fff !important;
}
.btn-store.apple {
    background: linear-gradient(135deg, #4facfe 0, #00f2fe 100%);
}
.btn-store.apple:hover {
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
    filter: brightness(1.05);
}
.btn-store.google {
    background: linear-gradient(135deg, #ff0844 0, #ffb199 100%);
}
.btn-store.google:hover {
    box-shadow: 0 8px 25px rgba(255, 8, 68, 0.4);
    filter: brightness(1.05);
}
.btn-store .icon,
.store-icon-size {
    font-size: 1.8rem;
}
.btn-store .texts {
    text-align: left;
    line-height: 1.1;
}
.btn-store .small-text {
    font-size: 0.6rem;
    display: block;
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: 600;
}
.btn-store .large-text {
    font-size: 0.95rem;
    font-weight: 800;
}
@media (max-width: 576px) {
    .btn-store .texts {
        display: none;
    }
    .btn-store .icon {
        font-size: 2rem;
        margin: 0 auto;
    }
}
.blog-section {
    padding: 100px 0;
    background: #fffafc;
}
.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 71, 87, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
}
.blog-card,
.sidebar-widget {
    border-radius: var(--border-radius-md);
}
.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 50px;
}
.blog-card {
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
}
.blog-img-wrapper {
    height: 220px;
}
.blog-date,
.widget-title::after {
    position: absolute;
    background: var(--primary-gradient);
}
.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}
.blog-date {
    bottom: 15px;
    left: 15px;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
}
.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-category {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.authorx span,
.blog-card-title {
    color: var(--text-dark);
}
.blog-card-title {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}
.blog-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.popular-info h5 a:hover,
.read-more {
    color: var(--primary-color);
}
.authorx span,
.read-more {
    font-size: 0.85rem;
    font-weight: 700;
}
.blog-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page-content-wrapper,
.sidebar-widget {
    padding: 30px;
    box-shadow: var(--shadow-sm);
    background: #fff;
}
.authorx {
    display: flex;
    align-items: center;
    gap: 10px;
}
.authorx img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}
.read-more {
    display: flex;
    align-items: center;
    gap: 5px;
}
.cat-count,
.category-list a,
.page-link-custom,
.popular-info h5 a {
    color: var(--text-dark);
}
.custom-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 60px;
}
.page-link-custom,
.popular-item {
    display: flex;
    align-items: center;
}
.page-link-custom {
    width: 45px;
    height: 45px;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
    transition: 0.3s;
}
.page-link-custom.active,
.page-link-custom:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}
.page-link-custom svg {
    fill: var(--text-dark);
    transition: 0.3s;
    width: 14px;
    height: 14px;
}
.page-link-custom.active svg,
.page-link-custom:hover svg {
    fill: #fff;
}
.sidebar-widget {
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}
.page-content-wrapper {
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.widget-title {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.widget-title::after {
    content: "";
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 2px;
}
.altbilesen ul,
.category-list,
.popular-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-list li {
    margin-bottom: 12px;
}
.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: #f8fafc;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}
.category-list a:hover {
    background: var(--primary-gradient);
    color: #fff !important;
    transform: translateX(1px);
}
.cat-count {
    font-size: 0.8rem;
    background: #fff;
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 800;
}
.category-list a:hover .cat-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.popular-item {
    gap: 15px;
    margin-bottom: 20px;
}
.altbilesen ul li,
.psohbets-input {
    margin-bottom: 15px;
}
.popular-item:last-child {
    margin-bottom: 0;
}
.popular-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}
.popular-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.4;
}
.popular-info h5 a {
    transition: color 0.3s;
}
.popular-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}
.psohbets-widget {
    background: var(--primary-gradient);
    color: #fff;
    text-align: center;
}
.footer-nav a:hover,
.psohbets-widget .widget-title,
.share-btn:hover svg {
    color: #fff;
}
.psohbets-widget .widget-title::after {
    background: #fff;
}
.psohbets-input {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    color: #fff;
    width: 100%;
}
.psohbets-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.btn-psohbets {
    background: #fff;
    color: var(--primary-color);
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
    transition: 0.3s;
}
.btn-psohbets:hover {
    background: var(--text-dark);
    color: #fff;
}
.footer-section {
    background: linear-gradient(180deg, #0f172a 0, #1e293b 100%);
    color: #fff;
    padding: 120px 0 30px;
    position: relative;
    overflow: hidden;
}
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}
.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}
.footer-wave .shape-fill {
    fill: #fffafc;
}
.footer-cols h4 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-cols h4 .icon {
    color: var(--primary-color);
    font-size: 1.1rem;
}
.altbilesen ul a {
    color: #94a3b8;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.altbilesen ul a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}
.footer-desc {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 30px;
}
.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-btn:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
    border-color: transparent;
    color: #fff !important;
}
.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p {
    margin: 0;
    color: #94a3b8;
    font-size: 1rem;
}
.footer-nav {
    display: flex;
    gap: 25px;
}
.footer-nav a {
    color: #94a3b8;
    font-size: 1rem;
    transition: color 0.3s;
}
svg.icon {
    width: 1.25em;
    height: 1.25em;
    vertical-align: middle;
    fill: currentColor;
}
body,
html {
    overflow-x: hidden !important;
    width: 100% !important;
}
.hero-glow {
    z-index: 1;
}
.hero-glow-1 {
    top: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    opacity: 0.2;
    filter: blur(80px);
}
.hero-glow-2 {
    bottom: -100px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: #ffda79;
    opacity: 0.3;
    filter: blur(100px);
}
.hero-glow-3 {
    top: 20%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: #e91e63;
    opacity: 0.25;
    filter: blur(90px);
}
.hero-glow-4 {
    bottom: 20%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: #ff0844;
    opacity: 0.4;
    filter: blur(80px);
}
.hero-glow-5 {
    top: 40%;
    left: 40%;
    width: 350px;
    height: 350px;
    opacity: 0.2;
    filter: blur(70px);
    animation: 8s ease-in-out infinite floatObjVars;
}
.glass-circle {
    top: 15%;
    left: 35%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: 5s ease-in-out infinite floatObj;
    z-index: 2;
}
.glass-rectangle {
    bottom: 25%;
    right: 25%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    border-radius: 30px;
    transform: rotate(45deg);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: 6s ease-in-out infinite reverse floatObjVars;
    z-index: 2;
}
.glass-dot {
    top: 50%;
    right: 5%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffda79, #ff6b81);
    border-radius: 50%;
    animation: 4s ease-in-out infinite floatAvatar;
    z-index: 2;
    opacity: 0.8;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.bubble-z2 {
    z-index: 2;
}
.bubble-opacity-4 {
    opacity: 0.4;
}
.bubble-opacity-5 {
    opacity: 0.5;
}
.bubble-opacity-6 {
    opacity: 0.6;
}
.navbar-toggler-icon-custom {
    color: var(--primary-color);
    font-size: 1.8rem;
}
.btn-custom-rounded {
    border-radius: 30px;
}
.hero-content-container {
    z-index: 10;
    padding-top: 60px;
}
.badge-hero {
    border-color: rgba(255, 71, 87, 0.3) !important;
}
.icon-mt-fix {
    margin-top: -3px;
}
.heading-text-shadow {
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.heading-dot {
    width: 12px;
    height: 12px;
    bottom: 15px;
    margin-left: 10px;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
}
.avatar-img,
.avatar-img-flipped {
    width: 100%;
    aspect-ratio: 1/1;
    mix-blend-mode: multiply;
    border: 4px solid rgba(255, 255, 255, 0.4);
    object-fit: cover;
}
.hero-description {
    font-weight: 500;
    font-size: 1.15rem;
    max-width: 600px;
    line-height: 1.8;
}
.float-badge-right {
    bottom: 35%;
    right: 0;
}
.float-badge-bottom {
    animation-delay: -2.5s;
    right: auto;
    top: auto;
    bottom: auto;
}
.avatar-size {
    max-width: 120px;
}
.avatar-img-flipped {
    transform: scaleX(-1);
}
.chat-bubble-sm {
    font-size: 0.75rem;
    padding: 5px 12px;
}
.chat-bubble-left-top {
    top: -15px;
    right: -20px;
}
.chat-bubble-right-bottom {
    bottom: -15px;
    left: -25px;
}
.social-icon-img {
    width: 42px;
    height: 42px;
}
.scroll-down-btn {
    width: 64px;
    height: 64px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 100%;
}
.chat-widget-sidebar-styled {
    background: linear-gradient(135deg, #fff 0, #fffafc 100%);
    border: 2px solid var(--primary-color);
}
.btn-alt-version {
    font-size: 0.7rem;
}
.error-404-title {
    font-size: 8rem;
    text-shadow: 0 10px 30px rgba(255, 71, 87, 0.2);
}
.error-404-subtitle,
.page-content-heading,
.post-lead {
    color: var(--text-dark);
}
.error-404-desc {
    max-width: 600px;
    color: var(--text-muted);
}
.breadcrumb-container {
    margin-top: 20px;
}
.breadcrumb-container .breadcrumb {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    padding: 10px 25px !important;
}
.post-featured-img {
    height: 450px;
    object-fit: cover;
}
.post-category-badge {
    background: rgba(255, 71, 87, 0.1);
}
.post-title {
    color: var(--text-dark);
    line-height: 1.3;
}
.post-author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.post-content {
    line-height: 1.9;
    color: #475569;
    font-size: 1.05rem;
}
.post-blockquote {
    border-left: 5px solid var(--primary-color);
    background: rgba(255, 71, 87, 0.03);
    border-radius: 0 16px 16px 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
}
.post-list {
    list-style-type: disc;
    padding-left: 20px;
}
.share-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}
.share-btn svg {
    color: #111;
}
.page-content-text {
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 1.05rem;
}
.feature-card-border {
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}
.comments-section,
.genelarka {
    background: #fff;
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}
.comment-item {
    background: #fff;
    gap: 20px;
    padding: 25px;
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shxadow: var(--shadow-sm);
}
.comment-avatar {
    object-fit: cover;
    object-fit: cover;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    flex-shrink: 0;
}
.comment-input {
    border-radius: 15px;
    padding: 14px 20px;
    border: 2px solid #e2e8f0;
    font-weight: 700;
}
.comment-list,
.comment-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.comment-list .children {
    margin-left: 30px;
    border-left: 1px solid #f1f1f1;
    padding-left: 10px;
}
#comments a {
    color: #000;
}
@media (max-width: 768px) {
    .comment-list .children {
        margin-left: 15px;
    }
    .comment-item {
        padding-left: 10px;
    }
}
.comment-item a {
    color: #212529 !important;
    text-decoration: none !important;
}
.comment-item a:hover {
    text-decoration: underline !important;
}
.comment-reply-link {
    display: inline-block;
    transition: 0.3s;
}
.aligncenter,
.back-to-top svg {
    display: block;
}
.comment-reply-link:hover {
    background-color: #eee !important;
}
.comments-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.alignleft,
.wp-caption.alignleft {
    margin: 0.5em 1.5em 1.5em 0;
}
.alignright,
.wp-caption.alignright {
    margin: 0.5em 0 1.5em 1.5em;
}
.alignleft {
    float: left;
}
.alignright {
    float: right;
}
.aligncenter {
    margin-left: auto;
    margin-right: auto;
    clear: both;
}
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    border: 1px solid #f0f0f0;
    background: #fff;
    padding: 4px;
    text-align: center;
}
.wp-caption img {
    border: 0;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}
.wp-caption .wp-caption-text {
    font-size: 13px;
    line-height: 1.5;
    margin: 8px 0 5px;
    padding: 0 5px;
    color: #777;
    font-style: italic;
}
.clear,
.entry-content::after {
    content: "";
    display: table;
    clear: both;
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ff4757;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    transition:
        background-color 0.3s,
        transform 0.3s;
}
.back-to-top:hover {
    background-color: #e33948;
    transform: scale(1.1);
}
