/* ===============================
   GENEL TEMA
================================*/
body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: "Segoe UI", sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* ===============================
   ANA KUTU
================================*/
.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

/* ===============================
   LOGO
================================*/
.logo-area {
    margin-bottom: 12px;
}

.logo {
    width: 120px;
    filter: drop-shadow(0 0 12px #00eaff);
}

/* ===============================
   BAŞLIK
================================*/
.title {
    font-size: 32px;
    font-weight: 700;
    color: #00eaff;
}

.subtitle {
    font-weight: 700;
    font-size: 15px;
    color: #ccc;
}

/* ===============================
   MODÜLLER
================================*/
.modules {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.module-card {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.07);
    border: 1px solid #00eaff44;
    cursor: pointer;
    transition: 0.25s;
}

.module-card:hover {
    transform: translateY(-4px);
    border-color: #00eaff;
    box-shadow: 0 0 18px #00eaff;
}

.module-card .icon {
    font-size: 42px;
}

.module-card h2 {
    color: #00eaff;
    font-size: 20px;
}

.module-card p {
    color: #bbb;
    font-size: 14px;
}

/* ===============================
   ALT İMZA
================================*/
.footer {
    margin-top: 40px;
    font-size: 13px;
    color: #999;
}

/* ===============================
   SEO ALANI
================================*/
.seo-wrapper {
    max-width: 1000px;
    margin: 80px auto 40px;
    padding: 20px;
}

.seo-box {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    line-height: 1.9;
    color: #ddd;
}

.seo-box h2 {
    color: #00eaff;
    margin-top: 35px;
}

.seo-box ul {
    padding-left: 20px;
}

.seo-box li {
    margin-bottom: 8px;
}

.seo-sign {
    margin-top: 30px;
    font-style: italic;
    color: #aaa;
}

/* ===============================
   FOOTER LINKLER
================================*/
.footer-links {
    text-align: center;
    margin: 30px 0;
    font-size: 14px;
}

.footer-links a {
    color: #7fefff;
    text-decoration: none;
    margin: 0 6px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ===============================
   RESPONSIVE
================================*/
@media (max-width: 480px) {
    .logo { width: 90px; }
    .title { font-size: 26px; }
    .subtitle { font-size: 13px; }
}

/* ===============================
   WINDOWS DESKTOP PROGRAM KARTI
================================ */

.desktop-card {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: center;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.desktop-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.desktop-content h2 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #26C6DA;
}

.desktop-content p {
    margin: 0 0 18px;
    color: #ccc;
    line-height: 1.6;
}

.desktop-btn {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(135deg, #26C6DA, #1e88e5);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.desktop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(38,198,218,0.35);
}

/* Mobil uyum */
@media (max-width: 768px) {
    .desktop-card {
        flex-direction: column;
        text-align: center;
    }

    .desktop-icon {
        font-size: 56px;
    }
}
/* ===============================
   FOOTER BUTONLARI
================================ */

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

.footer-btn {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    background: #26C6DA;      /* Ana mavi */
    color: #000;
    transition: background 0.2s ease, transform 0.15s ease;
}

/* Hover efekti */
.footer-btn:hover {
    background: #1EB3C7;      /* Bir ton koyu mavi */
    transform: translateY(-1px);
}
/* Mobil */
@media (max-width: 600px) {
    .footer-btn {
        width: 100%;
        text-align: center;
    }
}
/* ================================
   ACCORDION (SEO + UX)
================================ */

.accordion-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

/* BAŞLIK */
.accordion-title {
    margin: 0;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 20px;
    color: #26C6DA;
    position: relative;
    user-select: none;
}

/* + / - işareti */
.accordion-title::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    transition: transform .2s ease;
}

.accordion-item.active .accordion-title::after {
    content: "–";
}

/* İÇERİK (KAPALI) */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height 0.35s ease;
}
/* METİNLER */
.accordion-content p,
.accordion-content ul {
    color: #ddd;
    line-height: 1.7;
    margin: 10px 0 0;
}

.accordion-content ul {
    padding-left: 20px;
}

/* MOBİL DOKUNMA İYİLEŞTİRME */
.accordion-title {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
/* ===============================
   ANDROID KARTI = WINDOWS DAVRANIŞI
================================ */

/* ANDROID KART GENİŞLİĞİ = WINDOWS */
.android-card {
    max-width: 900px;
}

/* Kart ASLA hover / büyüme ALMAZ */
.android-card,
.android-card:hover {
    transform: none !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.08);
}

/* ANDROID İÇERİK HİZASI = WINDOWS GİBİ TOPLU */
.android-card .desktop-content {
    max-width: 520px;        /* kritik: yayılmayı bitirir */
    margin: 0 auto;          /* ortalar */
    text-align: center;      /* başlık + açıklama ortalı */
}

/* SADECE BUTON YEŞİL */
.android-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

/* SADECE BUTON HOVER (ALAN SABİT) */
.android-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46,204,113,0.35);
}
.adsense-main-content{
  max-width:900px;
  margin:60px auto 0;
  padding:0 20px;
  line-height:1.85;
  color:#ddd;
}
.adsense-main-content h2{
  color:#26C6DA;
  margin-bottom:20px;
}

