body {
    background: radial-gradient(circle at top, #17192f 0, #050712 55%, #02010a 100%);
    color: #f5f6ff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    text-decoration: none;
}

.navbar {
    background: rgba(5, 6, 22, 0.95);
    backdrop-filter: blur(18px);
}

.hero-section {
    padding: 70px 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.3);
    font-size: 0.75rem;
    color: #c2c5ff;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.hero-subtitle {
    color: #c4c6e6;
}

.glass-card {
    background: radial-gradient(circle at top left, rgba(255,255,255,0.12), rgba(0,0,0,0.5));
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 18px 45px rgba(0,0,0,0.7);
}

.platform-card {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(135deg, rgba(9,11,36,0.95), rgba(3,5,22,0.98));
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.platform-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.7);
    border-color: rgba(255,215,0,0.7);
}

.platform-rank-badge {
    width: 90px;
    height: 30px;
    border-radius: 18px;
    background: radial-gradient(circle at top, #ffd54a, #b0821a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #000;
    box-shadow: 0 0 18px rgba(255,214,80,0.7);
}

.platform-logo {
    max-height: 56px;
    max-width: 160px;
    object-fit: contain;
}

.rating-stars i {
    color: #ffd54a;
    font-size: 0.85rem;
}

.rating-value {
    font-size: 0.8rem;
    color: #f3f4ff;
}

.btn-main {
    background: linear-gradient(135deg, #ff4b91, #ffca45);
    color: #140f10;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    padding-inline: 24px;
}

.btn-main:hover {
    color: #140f10;
    opacity: 0.9;
}

.btn-soft {
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.4);
    color: #f5f5ff;
    background: transparent;
}

.btn-soft:hover {
    background: rgba(255,255,255,0.08);
}

.ad-box {
    background: linear-gradient(135deg, rgba(11,15,40,0.95), rgba(3,5,22,0.98));
    border-radius: 16px;
    padding: 12px;
    border: 1px dashed rgba(255,255,255,0.2);
    margin-bottom: 16px;
    font-size: 0.85rem;
}
.ad-box img{
    width: 100%;
    border-radius: 10px;
}

.blog-card {
    background: rgba(8,9,28,0.95);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 12px !important;
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.blog-card h3{
color: #fff;
}

.footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    font-size: 0.8rem;
    color: #9c9fd6;
}
.with100{
width: 100%;
height: auto;
}

/* Linkler */
a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid transparent;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    text-decoration: none;
}

.btn-secondary {
    background: #fff;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
}

/* HEADER */
.site-header {
    background: #0f172a;
    color: #e5e7eb;
    padding: 12px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Logo alanı */
.logo-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-logo img {
    height: 42px;
    width: auto;
    display: block;
}

.site-title-text {
    font-size: 20px;
    font-weight: 600;
}

.site-slogan {
    font-size: 12px;
    color: #9ca3af;
}

/* Navigasyon */
.main-nav {
    margin-left: 32px;
    display: flex;
    gap: 16px;
}

.main-nav a {
    color: #e5e7eb;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 4px;
}

.main-nav a:hover {
    background: rgba(148, 163, 184, 0.25);
    text-decoration: none;
}

/* Header reklam alanı */
.header-ad-wrap {
    margin-left: auto;
    max-width: 320px;
}

/* LAYOUT */
.main-page {
    padding: 24px 0 40px;
}

.layout-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    gap: 20px;
}

/* Sidebarlar */
.sidebar {
    min-height: 200px;
}

/* İçerik alanı */
.content {
    min-width: 0;
}


/* Platform listesi */
.platform-list-section {
    background: #ffffff;
    border-radius: 8px;
    padding: 18px 18px 24px;
    box-shadow: 0 1px 3px rgba(15,23,42,0.1);
    margin-bottom: 20px;
}

.section-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

/* Platform grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

/* Platform kartı */
.platform-card {
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(15,23,42,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.platform-media img,
.platform-media video {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.platform-title {
    font-size: 16px;
    margin: 0;
    color: #111827;
}

.platform-rating {
    font-size: 14px;
    color: #f59e0b;
}

.platform-campaign {
    font-size: 13px;
    color: #4b5563;
}

.platform-action {
    margin-top: auto;
}
.pltCardimg{
    margin-right: 15px;
}
.pltCardimg img{
height: 45px;

}
.headerpltfm{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.headerpltfm h2{
  color: #fff;
  font-size: 22px;
}

.pltFormConpany{
    width: 100%;
    text-align: center;
    margin: 5px 0px;
} .platform-campaign{
    color: #fff;
    font-size:18px;
    text-align: center;
}
.divPltbText{
    width: 100%;
}
.platform-action a{
    float: right;
}

.platform-rating .star {
    font-size: 18px;
    color: #f1c40f; /* Altın sarısı */
    margin-right: 2px;
}

.platform-rating .star.empty {
    color: #ccc;
}

.platform-rating .star.half {
    position: relative;
    display: inline-block;
    color: #ccc; /* Boş yıldız rengi */
}

.platform-rating .star.half::before {
    content: '★';
    color: #f1c40f;
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
}


/* Blog son yazılar */
.latest-posts-section {
    background: #ffffff;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 1px 3px rgba(15,23,42,0.1);
}

.latest-posts {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.latest-posts li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    border-bottom: 1px solid #e5e7eb;
}

.latest-posts li:last-child {
    border-bottom: none;
}

.latest-posts a {
    color: #111827;
    font-size: 14px;
}

.latest-posts a:hover {
    color: #2563eb;
}

.latest-posts .date {
    font-size: 12px;
    color: #9ca3af;
}

/* Reklam blokları */
.ad-banner {
    margin-bottom: 16px;
    text-align: center;
}

.ad-banner img,
.ad-banner video {
    max-width: 100%;
    border-radius: 6px;
}

/* FOOTER */
.site-footer {
    background: #0f172a;
    color: #9ca3af;
    padding: 16px 0;
    margin-top: 20px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}

/* BLOG SAYFALARI GENEL (blog/index.php, blog/post.php) */
.blog-list,
.blog-post {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(15,23,42,0.1);
    margin-bottom: 24px;
}

.blog-item {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.blog-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-item h2 {
    font-size: 18px;
    margin: 0 0 4px;
}

.blog-meta {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.blog-thumb img {
    max-width: 100%;
    border-radius: 6px;
    display: block;
    margin: 8px 0;
}

.blog-tags,
.blog-post .blog-tags {
    margin-top: 8px;
}

.blog-tags .tag {
    display: inline-block;
    font-size: 11px;
    background: #e5f2ff;
    color: #1d4ed8;
    padding: 3px 8px;
    border-radius: 999px;
    margin-right: 4px;
    margin-bottom: 4px;
}

.blog-post h1 {
    margin-top: 0;
    font-size: 24px;
}

.blog-post .blog-summary {
    font-style: italic;
    color: #4b5563;
}

.blog-post .blog-content {
    margin-top: 12px;
    font-size: 15px;
    color: #111827;
}

.pagination {
    margin-top: 16px;
    font-size: 14px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 4px 8px;
    margin-right: 4px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
}

.pagination a {
    background: #f9fafb;
    color: #111827;
}

.pagination .current {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

/* ADMIN TABLOLARI (genel görünüş için) */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table th,
.admin-table td {
    padding: 8px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.admin-table th {
    background: #f3f4f6;
    font-weight: 600;
}

.mt20 {
    margin-top: 20px;
}

/* FORM GENEL */
.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 7px 8px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.form-group small {
    font-size: 12px;
    color: #6b7280;
}

.form-actions {
    margin-top: 16px;
}

.alert {
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 12px;
}

.alert-danger {
    background: #fee2e2;
    color: #b91c1c;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .layout-grid {
        grid-template-columns: 1fr 2fr;
        grid-template-areas:
            "content content"
            "sidebar-left sidebar-right";
    }

    .sidebar-left,
    .sidebar-right {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .header-ad-wrap {
        margin-left: 0;
        width: 100%;
    }

    .main-nav {
        margin-left: 0;
    }

    .layout-grid {
        grid-template-columns: 1fr;
    }

    .platform-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
}




body {
    background: radial-gradient(circle at top, #17192f 0, #050712 55%, #02010a 100%);
    color: #f5f6ff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    text-decoration: none;
}

.navbar {
    background: rgba(5, 6, 22, 0.95);
    backdrop-filter: blur(18px);
}

.hero-section {
    padding: 70px 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.3);
    font-size: 0.75rem;
    color: #c2c5ff;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.hero-subtitle {
    color: #c4c6e6;
}

.glass-card {
    background: radial-gradient(circle at top left, rgba(255,255,255,0.12), rgba(0,0,0,0.5));
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 18px 45px rgba(0,0,0,0.7);
}

.platform-card {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(135deg, rgba(9,11,36,0.95), rgba(3,5,22,0.98));
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.platform-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.7);
    border-color: rgba(255,215,0,0.7);
}



.platform-logo {
    max-height: 56px;
    max-width: 160px;
    object-fit: contain;
}
.platform-card img{
    height: 50px;
    width:auto;
    
}

.rating-stars i {
    color: #ffd54a;
    font-size: 0.85rem;
}

.rating-value {
    font-size: 0.8rem;
    color: #f3f4ff;
}

.btn-main {
    background: linear-gradient(135deg, #ff4b91, #ffca45);
    color: #140f10;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    padding-inline: 24px;
}

.btn-main:hover {
    color: #140f10;
    opacity: 0.9;
}

.btn-soft {
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.4);
    color: #f5f5ff;
    background: transparent;
}

.btn-soft:hover {
    background: rgba(255,255,255,0.08);
}

.ad-box {
    background: linear-gradient(135deg, rgba(11,15,40,0.95), rgba(3,5,22,0.98));
    border-radius: 16px;
    padding: 12px;
    border: 1px dashed rgba(255,255,255,0.2);
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.blog-card {
    background: rgba(8,9,28,0.95);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 12px;
    font-size: 0.85rem;
}

.footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    font-size: 0.8rem;
    color: #9c9fd6;
}
.with100{
width: 100%;
height: auto;
}


.navbar-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

/* Tüm nav linkleri */
.navbar-nav .nav-item a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;

    padding: 8px 4px;
    position: relative;

    transition: color .25s ease, transform .25s ease;
}

/* Hafif altın parlama — hover */
.navbar-nav .nav-item a:hover {
    color: #ffdf8b;
    transform: translateY(-2px);
}

/* Altın underline efekti (premium) */
.navbar-nav .nav-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0%;
    height: 2px;

    background: linear-gradient(90deg, #ffcb52, #ffe6a3);
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);

    transition: width .28s ease;
}

.navbar-nav .nav-item a:hover::after {
    width: 100%;
}

/* Aktif link için sınıf eklediğinde görünüm */
.navbar-nav .nav-item.active a {
    color: #ffdf8b;
}

.navbar-nav .nav-item.active a::after {
    width: 100%;
}

/* Responsive optimize */
@media (max-width: 767px) {
    .navbar-nav {
        gap: 18px;
    }

    .navbar-nav .nav-item a {
        font-size: 1.05rem;
        padding: 10px 0;
    }
}
    .seo-text-container {
        margin: 40px auto 60px auto;
        max-width: 960px;
    }

    .seo-text-card {
        padding: 28px 32px;
        border-radius: 20px;

        /* Cam efekti */
        background: rgba(10, 12, 25, 0.68);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(14px) saturate(160%);

        box-shadow:
            0 14px 40px rgba(0,0,0,0.55),
            inset 0 0 24px rgba(255,255,255,0.03);
        color: #e6e7f1;
        font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.7;
        font-size: 1rem;
    }

    /* Başlıklar SEO için net ve belirgin */
    .seo-text-card h1,
    .seo-text-card h2,
    .seo-text-card h3 {
        color: #ffe2a0;
        margin-top: 0;
        margin-bottom: 14px;
        text-shadow: 0 0 10px rgba(255,215,0,0.25);
    }

    .seo-text-card h1 { font-size: 2rem; }
    .seo-text-card h2 { font-size: 1.6rem; }
    .seo-text-card h3 { font-size: 1.3rem; }

    .seo-text-card p {
        margin-bottom: 14px;
        color: #d7d9e5;
    }

    .seo-text-card a {
        color: #f7d77c;
        text-decoration: underline;
    }

    .seo-text-card strong,
    .seo-text-card b {
        color: #fff2b3;
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .seo-text-card {
            padding: 22px 20px;
            margin: 0 10px;
        }
    }