/* style.css */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fa;
    color: #333;
}

header {
    background-color: #4f46e5;
    color: white;
    padding: 20px;
    text-align: center;
}

.adsense-slot {
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
    box-sizing: border-box;
    /* Reklamların her zaman görünür olması için varsayılan display ayarı */
    display: flex;
}

.adsense-banner-top {
    width: 100%; /* Tüm ekran boyutları için genişliği yüzde olarak ayarlandı */
    max-width: 728px;
    height: 90px;
    margin: 20px auto;
}

.adsense-side-left, .adsense-side-right {
    width: 160px;
    height: 600px;
    min-width: 160px; /* Ekran küçülse bile görünür kalmasını sağlar */
}

.adsense-banner-bottom {
    width: 100%; /* Tüm ekran boyutları için genişliği yüzde olarak ayarlandı */
    max-width: 970px;
    height: 90px;
    margin: 20px auto;
}

/* Anasayfa içeriğini kapsayan ana konteyner */
#home-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Oyun sayfası için ana konteyner */
#game-page-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Bu kısım, sorunu çözen kritik düzeltmedir. */
/* `hidden` sınıfı eklendiğinde, bu öğeler kesinlikle gizlenir. */
#home-page-container.hidden,
#game-page-container.hidden,
.hidden {
    display: none !important;
}

.home-main-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    width: 220px;
    cursor: pointer;
    transition: transform 0.2s;
    text-align: center;
}

.card:hover {
    transform: scale(1.05);
}

#game-area {
    padding: 20px;
    max-width: 800px;
    flex-grow: 1;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 30px;
    position: relative;
    padding-top: 50px;
}

.go-back-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    margin: 0;
    z-index: 10;
}

button {
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #4f46e5;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #4338ca;
}

.game-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #ecf0f1;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item span:first-child {
    font-size: 0.9rem;
    font-weight: normal;
    color: #7f8c8d;
}

#game-score, #game-timer, #success-rate {
    font-size: 1.5rem;
    color: #4f46e5;
}

#restart-btn-container {
    text-align: center;
    margin-top: 20px;
}

.typing-stats {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.typing-stats span:first-child {
    font-size: 1rem;
    font-weight: normal;
    color: #7f8c8d;
}

#typing-timer-display {
    color: #4f46e5;
}

input[type="text"] {
    width: 95%;
    padding: 12px;
    margin-top: 15px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 5px rgba(79, 70, 229, 0.5);
}

#result, #game-status {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

#memory-game-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    width: 400px;
    margin: 20px auto;
    perspective: 1000px;
}

.memory-card {
    width: 90px;
    height: 90px;
    position: relative;
    transform: scale(1);
    transform-style: preserve-3d;
    transition: transform .5s;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.memory-card.flip {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    border-radius: 8px;
}

.card-front {
    background-color: #fff;
    transform: rotateY(180deg);
}

.card-back {
    background-color: #4f46e5;
    color: white;
}

#memory-game-status {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

#stroop-word {
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    min-height: 100px;
}

.stroop-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.stroop-buttons button {
    width: 120px;
    padding: 15px 10px;
    font-size: 1.2rem;
    border-radius: 8px;
    border: 2px solid #ccc;
    background-color: white;
    color: #333;
    transition: all 0.2s ease;
}

.stroop-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.stroop-buttons button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.stroop-buttons button.wrong-answer {
    animation: flash-red 0.5s ease-in-out forwards;
}

@keyframes flash-red {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    100% {
        box-shadow: 0 0 20px 5px rgba(231, 76, 60, 1);
    }
}

#clickArea {
    width: 100%;
    height: 200px;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#clickArea.ready {
    background: green;
    color: white;
}

.sequential-game-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 300px;
    height: 300px;
    margin: 20px auto;
}

.sequential-square {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.sequential-square:hover {
    transform: scale(1.05);
}

.sequential-square.correct {
    background-color: #2ecc71;
    color: white;
    border-color: #27ae60;
    pointer-events: none;
}

.sequential-square.wrong {
    background-color: #e74c3c;
    color: white;
    border-color: #c0392b;
}

.sequential-square.highlight-correct {
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.target-shape-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.target-shape-container span {
    font-size: 24px;
    font-weight: bold;
}

.target-shape-display {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 2px dashed #3498db;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape-game-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 300px;
    height: 300px;
    margin: 20px auto;
}

.shape-square {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.1s, background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape-square:hover {
    transform: scale(1.05);
}

.circle {
    background-color: #3498db;
    border-radius: 50%;
}

.square {
    background-color: #2ecc71;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86.6px solid #e74c3c;
    background: none;
    border-radius: 0;
    position: relative;
    top: -18px;
}

.star {
    clip-path: polygon(50% 0%, 61.8% 38.2%, 100% 38.2%, 69.1% 61.8%, 80.9% 100%, 50% 76.4%, 19.1% 100%, 30.9% 61.8%, 0% 38.2%, 38.2% 38.2%);
    background-color: #f1c40f;
}

.diamond {
    transform: rotate(45deg);
    background-color: #9b59b6;
}

.hexagon {
    width: 80px;
    height: 46px;
    background: #e67e22;
    position: relative;
}
.hexagon:before, .hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
}
.hexagon:before {
    bottom: 100%;
    border-bottom: 23px solid #e67e22;
}
.hexagon:after {
    top: 100%;
    width: 0;
    border-top: 23px solid #e67e22;
}

.math-game-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

#math-problem {
    font-size: 3rem;
    font-weight: bold;
    color: #4f46e5;
}

#math-input {
    width: 200px;
    padding: 15px;
    font-size: 1.5rem;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
}

#math-input:focus {
    border-color: #4f46e5;
    outline: none;
    box-shadow: 0 0 8px rgba(79, 70, 229, 0.3);
}

#number-memory-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

#number-display {
    font-size: 4rem;
    font-weight: bold;
    color: #3498db;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#number-memory-input {
    width: 200px;
    padding: 15px;
    font-size: 1.5rem;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
}

#number-memory-input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

.visual-attention-board {
    display: grid;
    gap: 5px;
    width: 350px;
    height: 350px;
    margin: 20px auto;
}

.visual-attention-square {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.1s ease-in-out;
}

.visual-attention-square:hover {
    transform: scale(1.05);
}

.info-section {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-section h2 {
    color: #4f46e5;
    margin-top: 0;
}

.info-section hr {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 20px 0;
}

.adsense-slot {
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
    box-sizing: border-box;
    /* Reklamların her zaman görünür olması için varsayılan display ayarı */
    display: flex;
}

.adsense-banner-top {
    width: 100%; /* Tüm ekran boyutları için genişliği yüzde olarak ayarlandı */
    max-width: 728px;
    height: 90px;
    margin: 20px auto;
}

.adsense-side-left, .adsense-side-right {
    width: 160px;
    height: 600px;
    min-width: 160px; /* Ekran küçülse bile görünür kalmasını sağlar */
}

.adsense-banner-bottom {
    width: 100%; /* Tüm ekran boyutları için genişliği yüzde olarak ayarlandı */
    max-width: 970px;
    height: 90px;
    margin: 20px auto;
}

.main-footer {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #4f46e5;
}

/* about.css */

.about-container {
    padding: 20px;
    max-width: 800px;
    margin: 30px auto;
    position: relative;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-content {
    padding-top: 20px; /* Butonun üstüne gelmemesi için */
}

.about-content h2 {
    color: #4f46e5;
    margin-top: 0;
}

.about-content h3 {
    color: #333;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-top: 30px;
}

.about-content p {
    line-height: 1.6;
    color: #555;
}

.about-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* go-back-btn stilini, ana style.css'ten alınmış gibi kullanıyoruz */
.go-back-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    margin: 0;
    z-index: 10;
}


/* contact.css */

.contact-container {
    padding: 20px;
    max-width: 800px;
    margin: 30px auto;
    position: relative;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-content {
    padding-top: 20px;
}

.contact-content h2,
.contact-content h3 {
    color: #4f46e5;
    margin-top: 0;
}

.contact-content p {
    line-height: 1.6;
    color: #555;
}

.feedback-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box; /* padding'in genişliğe dahil olmasını sağlar */
}

.form-group textarea {
    resize: vertical; /* Sadece dikeyde boyutlandırma */
}

.feedback-form button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #4f46e5;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.feedback-form button:hover {
    background-color: #4338ca;
}

.go-back-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    margin: 0;
    z-index: 10;
}
/* privacy.css */

.privacy-container {
    padding: 20px;
    max-width: 800px;
    margin: 30px auto;
    position: relative;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.privacy-content {
    padding-top: 20px;
}

.privacy-content h2,
.privacy-content h3 {
    color: #4f46e5;
    margin-top: 0;
}

.privacy-content h3 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-top: 30px;
}

.privacy-content p {
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.privacy-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.go-back-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    margin: 0;
    z-index: 10;
}
 
/* terms.css */

.terms-container {
    padding: 20px;
    max-width: 800px;
    margin: 30px auto;
    position: relative;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.terms-content {
    padding-top: 20px;
}

.terms-content h2,
.terms-content h3 {
    color: #4f46e5;
    margin-top: 0;
}

.terms-content h3 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-top: 30px;
}

.terms-content p {
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.go-back-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    margin: 0;
    z-index: 10;
}
 /* Mesaj kutusu stilleri */
.feedback-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
}
.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#blog-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-main-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.blog-section {
    max-width: 800px;
    flex-grow: 1;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 30px;
}

.blog-section h2 {
    color: #4f46e5;
    margin-top: 0;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.blog-posts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.blog-post {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-title {
    font-size: 1.2rem;
    color: #4f46e5;
    margin: 0 0 10px 0;
}

.blog-summary {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.read-more-btn {
    display: inline-block;
    background-color: #4f46e5;
    color: white;
    padding: 8px 15px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
    transition: background-color 0.2s;
}

.read-more-btn:hover {
    background-color: #4338ca;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.page-link {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: #4f46e5;
    background-color: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s;
}

.page-link:hover {
    background-color: #4f46e5;
    color: white;
}

.page-link.active {
    background-color: #4f46e5;
    color: white;
    font-weight: bold;
}

/* single.html için gerekli CSS kodları */
#single-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-main-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.post-content-area {
    max-width: 800px;
    flex-grow: 1;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 30px;
    margin-top: 30px;
}

.post-title {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.post-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.post-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.post-text h3 {
    color: #3f36a5;
    margin-top: 30px;
}

.post-text ul, .post-text ol {
    margin-left: 20px;
}

.back-to-blog-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #f1f5f9;
    color: #4f46e5;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s;
    font-weight: bold;
}

.back-to-blog-btn:hover {
    background-color: #e2e8f0;
}




/* 768 pikselden küçük ekranlar için medya sorgusu */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }
    .adsense-side-left, .adsense-side-right {
        display: none;
    }
    .card {
        width: 90%;
    }
    
    .home-main-content {
        flex-direction: column;
    }

    #game-page-container {
        flex-direction: column;
    }

    #game-area {
        margin: 20px 10px;
        padding: 20px;
    }
    
    .go-back-btn {
        top: 5px;
        right: 5px;
        font-size: 0.9rem;
    }

    .game-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item span:first-child {
        font-size: 0.8rem;
    }
    
    #game-score, #game-timer, #success-rate {
        font-size: 1.2rem;
    }
    
    #stroop-word {
        font-size: 2rem;
    }
    
    .stroop-buttons button {
        width: 100px;
        font-size: 1rem;
    }
    
    #memory-game-board {
        width: 100%;
    }
    
    .memory-card {
        width: 70px;
        height: 70px;
    }
    
    .card-front, .card-back {
        font-size: 28px;
    }
    
    .sequential-game-board, .shape-game-board, .visual-attention-board {
        width: 100%;
        height: 350px;
    }
    
    .info-section {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .info-section h2 {
        font-size: 1.2rem;
    }
    
    .info-section p {
        font-size: 0.9rem;
    }
    
    .main-footer p {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    .about-container {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .go-back-btn {
        top: 5px;
        right: 5px;
        font-size: 0.9rem;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .about-content h3 {
        font-size: 1.2rem;
    }
    
    .about-content p, .about-content li {
        font-size: 0.9rem;
    }
    .contact-container {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .go-back-btn {
        top: 5px;
        right: 5px;
        font-size: 0.9rem;
    }
    
    .contact-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-content p {
        font-size: 0.9rem;
    }

    .feedback-form button {
        font-size: 16px;
        padding: 12px;
    }
    .privacy-container {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .go-back-btn {
        top: 5px;
        right: 5px;
        font-size: 0.9rem;
    }
    
    .privacy-content h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content h3 {
        font-size: 1.2rem;
    }
    
    .privacy-content p, .privacy-content li {
        font-size: 0.9rem;
    }
    .terms-container {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .go-back-btn {
        top: 5px;
        right: 5px;
        font-size: 0.9rem;
    }
    
    .terms-content h2 {
        font-size: 1.5rem;
    }
    
    .terms-content h3 {
        font-size: 1.2rem;
    }
    
    .terms-content p, .terms-content li {
        font-size: 0.9rem;
    }
    .blog-main-content {
        flex-direction: column; /* İçeriği dikey olarak sırala */
        padding: 10px;
    }
    .blog-posts-container {
        grid-template-columns: 1fr;
    }
    .blog-section h2 {
        font-size: 1.8rem;
    }

    .blog-post .blog-title {
        font-size: 1.1rem;
    }

    .blog-post .blog-summary {
        font-size: 0.85rem;
    }

    .read-more-btn {
        font-size: 0.9rem;
        padding: 7px 12px;
    }

    /* Sayfalama (pagination) alanını düzenle */
    .pagination {
        flex-wrap: wrap; /* Sayfa numaraları sığmazsa alt satıra geçsin */
        justify-content: center;
        gap: 5px;
    }

    .pagination .page-link {
        padding: 6px 12px;
    }

    .single-main-content {
        flex-direction: column;
        padding: 10px;
    }
    
    .post-content-area {
        margin-top: 10px;
        padding: 20px;
    }

    .post-title {
        font-size: 2rem;
    }
    
    .post-text {
        font-size: 1rem;
    }
}