@font-face {
    font-family: 'BaslikFont';
    src: url('fonts/baslik.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'IcerikFont';
    src: url('fonts/icerik.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0 0 80px 0;
    background: #fff;
    color: #000;
    font-family: 'IcerikFont', Arial, sans-serif;
}

.snap-container {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    padding-top: 32px;
    position: relative;
    z-index: 1;
}

.navbar {
    width: 100vw;
    background: #000;
    padding: 0;
    margin: 0;
    min-height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 90px;
}
.logo-link {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-user {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 90px;
    margin: 0 auto;
    display: block;
    cursor: pointer;
    transition: filter 0.2s;
}
.logo-img:hover {
    filter: brightness(1.2) drop-shadow(0 0 8px #fff3);
}

.navbar-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px #0001;
    border: 2px solid #fff;
    background: #eee;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.navbar-avatar:hover {
    box-shadow: 0 4px 16px #0002;
}

.navbar-profile-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    padding: 0 6px;
    border-radius: 8px;
    transition: background 0.15s;
}

.navbar-profile-link:hover {
    background: #2223;
}

.navbar-lang {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.navbar-lang-modern {
    display: flex;
    align-items: center;
    margin-right: 12px;
    margin-left: 0;
}
.navbar-lang-modern form {
    display: flex;
    gap: 6px;
}
.lang-btn {
    background: #fff;
    color: #222;
    border: 1.5px solid #eee;
    border-radius: 8px;
    padding: 6px 18px;
    font-size: 1.08rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
    box-shadow: 0 2px 8px #0001;
    outline: none;
    opacity: 0.92;
}
.lang-btn:hover, .lang-btn:focus {
    background: #f3f3f3;
    color: #111;
    border: 1.5px solid #ccc;
    opacity: 1;
}
.lang-btn.active {
    background: #fff;
    color: #111;
    border: 2px solid #007cf0;
    box-shadow: 0 2px 8px #007cf033;
    opacity: 1;
}

.categories,
.latest-logs,
.about {
    min-height: calc(100vh - 16px);
    height: calc(100vh - 16px);
    scroll-snap-align: center;
    scroll-margin-top: 32px;
    box-sizing: border-box;
    margin-top: 0;
}

.categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 84px;
    margin: 0;
}
.category-box, .category-box * {
    font-family: 'BaslikFont', Arial, sans-serif !important;
    font-size: 1.8rem !important;
    width: 280px;
    height: 280px;
    background: #000;
    color: #fff !important;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 2px;
    font-weight: 700;
    box-shadow: 0 2px 16px #0002;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    text-decoration: none !important;
}
.category-box:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px #0004;
}

.section-title {
    font-family: 'BaslikFont', Arial, sans-serif;
    font-size: 2.3rem;
    text-align: center;
    margin: 0 0 48px 0;
    letter-spacing: 2px;
}

.latest-logs {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.logs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px 32px;
    justify-items: center;
}
.log-card {
    width: 220px;
    height: 220px;
    max-width: 100%;
    background: #000;
    color: #fff;
    border-radius: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'IcerikFont', Arial, sans-serif;
    font-size: 1.3rem;
    box-shadow: 0 2px 16px #0002;
    text-align: center;
    padding: 18px 10px;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
    box-sizing: border-box;
}
.log-card:hover {
    box-shadow: 0 4px 32px #0005;
    transform: translateY(-2px) scale(1.03);
}
.log-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 8px;
}
.log-title {
    font-family: 'IcerikFont', Arial, sans-serif;
    font-size: 2rem !important;
    line-height: 1.1;
    margin-bottom: 0;
    font-weight: 700;
}
.log-date {
    font-family: 'IcerikFont', Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0;
}
.log-summary {
    font-family: 'IcerikFont', Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
}

.about {
    margin: 0 auto 220px auto;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-box {
    background: #000;
    color: #fff;
    border-radius: 32px;
    padding: 48px 36px;
    font-size: 1.9rem;
    font-family: 'IcerikFont', Arial, sans-serif;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0 2px 16px #0002;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    width: 100vw;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    font-size: 1.08rem;
    height: 56px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
}
.footer-left {
    flex: 1;
    font-family: 'IcerikFont', Arial, sans-serif;
}
.footer-right {
    display: flex;
    gap: 18px;
    align-items: center;
    font-family: 'IcerikFont', Arial, sans-serif;
}
.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: none;
    margin-left: 4px;
}
.footer-icon svg {
    display: block;
}

@media (max-width: 1200px) {
    .categories { gap: 40px; }
    .logs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .category-box { width: 120px; height: 120px; font-size: 1rem !important; }
    .logs-grid { grid-template-columns: 1fr; }
    .log-card { width: 90vw; height: 120px; font-size: 1rem; }
    .log-title, .log-date { font-size: 1.4rem !important; }
    .navbar-lang-modern {
        margin-right: 4px;
    }
    .lang-btn {
        padding: 4px 10px;
        font-size: 0.98rem;
    }
}
@media (max-width: 600px) {
    .navbar-inner { padding: 0 8px; height: 56px; }
    .logo-img { height: 56px; }
    .navbar-lang {
        left: 8px;
    }
    .logo-link {
        margin-left: 44px !important;
    }
    .categories { margin: 32px 0 24px 0; }
    .category-box { width: 80px; height: 80px; font-size: 0.8rem !important; }
    .section-title { font-size: 1.2rem; }
    .logs-grid { grid-template-columns: 1fr; gap: 18px; }
    .log-card { width: 90vw; height: 80px; font-size: 0.9rem; }
    .about { margin: 24px auto; }
    .about-box { padding: 18px 8px; font-size: 1rem; }
    .footer { padding: 0 8px; font-size: 0.9rem; height: 44px; }
    .footer-icon { width: 22px; height: 22px; }
    .log-title, .log-date { font-size: 1.1rem !important; }
    .snap-container { padding-top: 56px; }
}
@media (max-width: 700px) {
    .categories,
    .latest-logs,
    .about {
        margin-top: -1px;
    }
    .category-box { width: 120px; height: 120px; font-size: 1rem !important; }
    .logs-grid { grid-template-columns: 1fr; }
    .log-card { width: 90vw; height: 120px; font-size: 1rem; }
    .log-title, .log-date { font-size: 1.4rem !important; }
}

/* --- Review Detay Sayfası --- */
.post-detail-section {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 140px 16px 80px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
.post-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.post-title {
    font-family: 'BaslikFont', Arial, sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 32px 0;
    line-height: 1.1;
}

.post-top-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.post-summary-box {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 28px;
    max-width: 420px;
    min-width: 260px;
    font-size: 1.1rem;
    font-family: 'IcerikFont', Arial, sans-serif;
    color: #222;
    flex: 1 1 260px;
    text-align: left;
}

.post-score-box {
    background: #111;
    color: #fff;
    font-family: 'IcerikFont', Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    border-radius: 24px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px #0002;
    flex-shrink: 0;
}

.post-meta {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 32px;
    text-align: center;
    width: 100%;
    font-family: 'IcerikFont', Arial, sans-serif;
}
.post-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}
.post-image img {
    max-width: 600px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 2px 16px #0002;
}
.post-subtitle {
    font-family: 'IcerikFont', Arial, sans-serif;
    font-size: 1.5rem;
    color: #111;
    text-align: center;
    margin: 36px 0 24px 0;
    font-weight: 700;
}
.post-content {
    font-family: 'IcerikFont', Arial, sans-serif;
    font-size: 1.1rem;
    color: #222;
    text-align: center;
    margin-bottom: 36px;
    max-width: 900px;
    line-height: 1.7;
}
.post-backlinks {
    text-align: center;
    margin-top: 32px;
    font-size: 1rem;
}
.post-backlinks .back-link {
    color: #000;
    text-decoration: underline;
    font-family: 'IcerikFont', Arial, sans-serif;
}
.post-content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
    margin-bottom: 24px;
    max-width: 100%;
    height: auto;
}
@media (max-width: 700px) {
    .post-top-row {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .post-summary-box {
        max-width: 98vw;
        min-width: 0;
        padding: 18px 10px;
        font-size: 1rem;
    }
    .post-score-box {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    .post-title {
        font-size: 1.3rem;
    }
    .post-image img {
        max-width: 98vw;
    }
    .post-detail-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .post-subtitle {
        font-size: 1.1rem;
        margin: 18px 0 12px 0;
    }
    .post-content {
        font-size: 0.98rem;
    }
}

.big-score-box {
    width: 240px;
    height: 240px;
    font-size: 7.2rem;
    margin: 0 auto 32px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.score-label {
    font-family: 'IcerikFont', Arial, sans-serif;
    font-size: 1.3rem;
    color: #222;
    font-weight: 700;
    letter-spacing: 1px;
    margin-right: 18px;
    white-space: pre-line;
    word-break: break-word;
    max-width: 420px;
    text-align: left;
    line-height: 1.5;
}

.score-row-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto 32px auto;
}

.score-label-grid {
    font-family: 'IcerikFont', Arial, sans-serif;
    font-size: 1.3rem;
    color: #222;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
    word-break: break-word;
    text-align: left;
}

@media (max-width: 700px) {
    .score-row-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .score-label-grid {
        font-size: 1.1rem;
    }
}

.comments-section {
    margin-bottom: 80px !important;
}

.lang-toggle-btn {
    background: #fff;
    color: #222;
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 7px 22px;
    font-size: 1.08rem;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px #0001;
    outline: none;
    margin-left: 0;
    margin-right: 0;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.18s;
    opacity: 0.96;
    position: relative;
    z-index: 20;
}
.lang-toggle-btn:active, .lang-toggle-pop {
    animation: langPop 0.32s cubic-bezier(.23,1.45,.32,1) both;
}
@keyframes langPop {
    0% { transform: scale(1); box-shadow: 0 2px 8px #0001; }
    60% { transform: scale(1.18); box-shadow: 0 8px 32px #007cf055; }
    100% { transform: scale(1); box-shadow: 0 2px 8px #007cf033; }
}
.navbar-lang-toggle {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
}
@media (max-width: 900px) {
    .navbar-lang-toggle {
        left: 8px;
    }
    .lang-toggle-btn {
        padding: 5px 12px;
        font-size: 0.98rem;
    }
}

.newsletter-section {
    min-height: 100vh;
    height: 100vh;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-sizing: border-box;
    padding: 0;
} 