/* GENEL HERO AYARI */
.shortener-hero {
    padding: 140px 0;
    background: #102652;
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text-area { margin-bottom: 50px; }

/* BADGE & BAŞLIK */
.premium-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 204, 0, 0.2);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 25px;
}

.gold-text { color: #ffcc00; }
.main-hero-title { font-size: 64px; font-weight: 900; color: #fff; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(45deg, #ffcc00, #ffec85); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { background: linear-gradient(45deg, #ffcc00, #ffec85); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.white-text { color: #fff;}

/* INPUT BOX (TAM ORTALI & FIXED) */
.short-tool-box {
    max-width: 850px;
    margin: 0 auto;
}

.input-container-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px 8px 8px 30px;
    transition: 0.4s;
}

.input-left { display: flex; align-items: center; flex: 1; }
.main-icon { color: #ffcc00; font-size: 24px; margin-right: 15px; }

.input-container-premium input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 17px;
    outline: none;
    width: 100%;
}

.bgm-action-btn {
    background: #ffcc00;
    color: #0a1428;
    border: none;
    padding: 16px 35px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

/* SONUÇ ALANI (BINME HATASI FIX) */
.premium-result {
    margin: 40px auto 0;
    max-width: 650px;
}

.result-inner {
    display: flex;
    align-items: center;
    background: rgba(13, 27, 62, 0.8);
    border: 2px solid #ffcc00;
    border-radius: 20px;
    padding: 10px;
    gap: 10px;
}

.result-inner input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffcc00;
    padding: 0 15px;
    font-size: 18px;
    font-weight: 700;
    outline: none;
    min-width: 0; /* Mobilde taşmayı önler */
}

.copy-btn-new {
    background: #fff;
    color: #0a1428;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap; /* Yazının ikonun altına düşmesini engeller */
}

.secure-badge { margin-top: 15px; color: #4ade80; font-size: 14px; font-weight: 600; }

/* MOBİL FIX */
@media (max-width: 768px) {
    .main-hero-title { font-size: 42px; }
    .input-container-premium { flex-direction: column; border-radius: 25px; padding: 20px; gap: 15px; }
    .input-left { width: 100%; }
    .bgm-action-btn { width: 100%; justify-content: center; }
    .result-inner { flex-direction: column; padding: 20px; }
    .copy-btn-new { width: 100%; justify-content: center; }
}


/* 2. BÖLÜM: KESİNTİSİZ TASARIM */

.shortener-hero {
    padding: 80px 0 40px 0; /* Üstten 80, alttan sadece 40px bıraktık */
    background: #102652;
    min-height: auto; /* Yüksekliği içeriğe göre esnettik, zorlamayı kaldırdık */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* 2. SEO KARTLARININ ÜST BOŞLUĞUNU DARALTALIM */
.short-seo-cards {
    padding: 40px 0 100px 0; /* Üstten 40px yaparak Hero'ya yaklaştırdık */
    background-color: #102652; /* Senin ana lacivert tonun */
    position: relative;
    width: 100%;
}

/* Kartların yayıldığı alanın genişliğini sınırlıyoruz */
.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1140px; /* Çok genişlemeyi önler */
    margin: 0 auto 80px;
}

.bgm-glass-card {
    background: rgba(255, 255, 255, 0.03); /* Cam efekti için hafif beyazlık */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 25px;
    border-radius: 30px;
    text-align: center;
    transition: 0.4s ease;
}

.bgm-glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #ffcc00;
    transform: translateY(-10px);
}

.card-icon-glow {
    width: 60px;
    height: 60px;
    background: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
    font-size: 30px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.bgm-glass-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.bgm-glass-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

/* SEO METİN ALANI */
.deep-seo-section {
    text-align: center;
    max-width: 850px; /* Yazıyı çok yaymamak için */
    margin: 0 auto;
}

.seo-title {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
}

.deep-seo-section p {
    color: #8e9aaf;
    font-size: 16px;
    line-height: 1.8;
}

/* MOBİL AYARLAR */
@media (max-width: 991px) {
    .seo-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 0 20px; }
}

@media (max-width: 768px) {
    .seo-grid { grid-template-columns: 1fr; }
    .short-seo-cards { padding: 60px 0; }
}

/* 3. BÖLÜM: GENEL SEO BLOĞU */
.short-usage-section {
    padding: 60px 0 100px 0;
    background-color: #102652;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.usage-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.usage-title {
    text-align: center;
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 50px;
}

.usage-text-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

.usage-text-item h4 {
    color: #ffcc00;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.usage-text-item h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #ffcc00;
    border-radius: 10px;
}

.usage-text-item p {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.8;
}

/* SEO ETİKET BULUTU */
.seo-tag-cloud {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.seo-tag-cloud span {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8e9aaf;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.seo-tag-cloud span:hover {
    border-color: #ffcc00;
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.05);
}

@media (max-width: 768px) {
    .usage-title { font-size: 26px; }
    .usage-text-item p { font-size: 15px; }
}


/* BGM FINAL ARAÇLAR PANELİ - TAM UYUMLU */

.sm-badge {
    background: rgba(255, 204, 0, 0.1) !important;
    border: 1px solid rgba(255, 204, 0, 0.2) !important;
    color: #ffcc00 !important;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    display: inline-block;
}


.bgm-tools-section {
    padding: 100px 0;
    background-color: #102652; /* DİKİŞSİZ ARKA PLAN */
    width: 100%;
}

.tools-header { text-align: center; margin-bottom: 60px; }
.tools-main-title { font-size: 38px; font-weight: 900; color: #fff; margin: 15px 0; }
.tools-subtitle { color: #94a3b8; font-size: 16px; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* GRID SİSTEMİ */
.tools-final-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.sm-animated-gradient { 
    color: #ffcc00 !important; /* BGM Sarısı */
}

/* KART TASARIMI */
.bgm-tool-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    position: relative;
    transition: all 0.4s ease;
}

/* HOVER EFEKTİ */
.bgm-tool-card:hover:not(.active-tool) {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffcc00;
    transform: translateY(-5px);
}

/* AKTİF KART (SARI ÇERÇEVELİ) */
.bgm-tool-card.active-tool {
    border: 2px solid #ffcc00;
    background: rgba(255, 204, 0, 0.03);
    cursor: default;
}

.tool-status {
    position: absolute;
    top: 20px;
    right: 25px;
    background: #ffcc00;
    color: #102652;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
}

/* İKON KUTUSU */
.tool-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc00;
    font-size: 32px;
    flex-shrink: 0;
}

/* YAZILAR */
.tool-details h4 { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.tool-details p { color: #94a3b8; font-size: 15px; margin: 0; line-height: 1.5; text-align: left; }

/* OK İKONU */
.arrow-icon {
    margin-left: auto;
    color: #ffcc00;
    font-size: 24px;
    opacity: 0.3;
    transition: 0.3s;
}

.bgm-tool-card:hover .arrow-icon {
    opacity: 1;
    transform: translateX(5px);
}

/* MOBİL UYUM */
@media (max-width: 991px) {
    .tools-final-grid { grid-template-columns: 1fr; padding: 0 20px; }
}