/* Plus Games - Ana CSS Dosyası */

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #021e36 0%, #033f5c 50%, #056085 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
    background: none !important;
    background-color: transparent !important;
}

.nav-brand a {
    background: none !important;
    background-color: transparent !important;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dil-secici {
    display: flex;
    gap: 0.5rem;
}

.dil-link {
    color: white;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.dil-link.active,
.dil-link:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.btn-outline {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: 2px solid transparent;
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Nav Profil Butonu - Daha Kompakt */
/* Tüm btn class özelliklerini override et */
.btn.btn-outline.nav-profil-buton,
.nav-actions .kullanici-menu .btn.btn-outline.nav-profil-buton,
.kullanici-menu .btn.btn-outline.nav-profil-buton,
.kullanici-menu .nav-profil-buton {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 4px 8px !important;
    min-height: auto !important;
    height: auto !important;
    line-height: 1 !important;
    font-size: 0.8rem !important;
    border-radius: 20px !important;
    /* btn class'ının tüm özelliklerini override et */
    margin: 0 !important;
    text-align: left !important;
}

/* Profil resmi - çok küçük */
.nav-actions .nav-profil-resmi,
.kullanici-menu .nav-profil-resmi,
.btn.nav-profil-buton .nav-profil-resmi,
.btn-outline.nav-profil-buton .nav-profil-resmi {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Profil avatar - çok küçük */
.nav-actions .nav-profil-avatar,
.kullanici-menu .nav-profil-avatar,
.btn.nav-profil-buton .nav-profil-avatar,
.btn-outline.nav-profil-buton .nav-profil-avatar {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.2) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    flex-shrink: 0 !important;
    vertical-align: middle !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Profil ismi - küçük */
.nav-actions .nav-profil-isim,
.kullanici-menu .nav-profil-isim,
.btn.nav-profil-buton .nav-profil-isim,
.btn-outline.nav-profil-buton .nav-profil-isim {
    white-space: nowrap !important;
    font-size: 0.8rem !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
}

/* Oyunlar Section */
.oyunlar-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.oyunlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.oyun-kart {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oyun-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.oyun-resim {
    height: 200px;
    overflow: hidden;
}

.oyun-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oyun-bilgi {
    padding: 1.5rem;
}

.oyun-baslik {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.oyun-aciklama {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Özellikler Section */
.ozellikler-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.ozellikler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ozellik-kart {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ozellik-kart:hover {
    transform: translateY(-5px);
}

.ozellik-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ozellik-icon i {
    font-size: 2rem;
    color: white;
}

.ozellik-baslik {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.ozellik-aciklama {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: #ffd700;
    color: #2c3e50;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
    }
    
    .nav-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .oyunlar-grid {
        grid-template-columns: 1fr;
    }
    
    .ozellikler-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Arkadaslar Nav Rozeti */
.nav-rozet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff4d6d;
    color: #fff;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0 6px;
    min-width: 20px;
    height: 20px;
    margin-left: 6px;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-rozet.gizli {
    opacity: 0;
    visibility: hidden;
}

/* Arkadaslar Sayfasi */
.arkadas-sayfa {
    margin-top: 100px;
    padding: 40px 20px 80px;
    background: #f7f8fb;
    min-height: calc(100vh - 160px);
}

.arkadas-baslik {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.arkadas-baslik h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.arkadas-ozet {
    display: flex;
    gap: 16px;
}

.ozet-kutu {
    background: #fff;
    border-radius: 16px;
    padding: 12px 24px;
    box-shadow: 0 10px 25px rgba(15, 35, 95, 0.1);
    text-align: center;
}

.ozet-kutu span {
    display: block;
    font-size: 0.85rem;
    color: #7a88a3;
    margin-bottom: 8px;
}

.ozet-kutu strong {
    font-size: 1.5rem;
    color: #1a1f36;
}

.arkadas-paneller {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.arkadas-yan-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.arkadas-panel,
.arkadas-yan-panel .yan-panel-kutu {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(15, 35, 95, 0.07);
}

.panel-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.panel-baslik h2 {
    font-size: 1.2rem;
    margin: 0;
}

.arkadas-ara-input {
    width: 100%;
    border: 1px solid #e0e7ff;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.arkadas-ara-input:focus {
    border-color: #5a67d8;
    box-shadow: 0 0 0 3px rgba(90, 103, 216, 0.15);
}

.arkadas-icerik,
.yan-panel-icerik {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.arkadas-kart,
.istek-kart,
.arama-kart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fbff;
    border-radius: 14px;
    padding: 16px;
    border: 1px solid transparent;
    transition: border 0.2s ease, transform 0.2s ease;
}

.arkadas-kart:hover,
.istek-kart:hover,
.arama-kart:hover {
    border-color: #d6dcf5;
    transform: translateY(-2px);
}

.arkadas-kimlik {
    display: flex;
    align-items: center;
    gap: 14px;
}

.arkadas-avatar-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.arkadas-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6b73ff, #000dff);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.profil-resmi-img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.arkadas-profil-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.arkadas-profil-link:hover {
    opacity: 0.8;
}

.arkadas-profil-link:hover .profil-resmi-img {
    border-color: #6b73ff;
    transform: scale(1.05);
}

.arkadas-kimlik .arkadas-profil-link h4 {
    margin: 0;
    color: #1a1f36;
    transition: color 0.2s ease;
}

.arkadas-kimlik .arkadas-profil-link:hover h4 {
    color: #6b73ff;
}

.arkadas-bilgi h4 {
    margin: 0;
    font-size: 1rem;
    color: #1a1f36;
}

.arkadas-bilgi span {
    font-size: 0.85rem;
    color: #7a88a3;
}

.arkadas-aksiyon {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.arkadas-btn {
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.arkadas-btn.basari {
    background: #5cb85c;
    color: #fff;
}

.arkadas-btn.uyari {
    background: #ff7a18;
    color: #fff;
}

.arkadas-btn.tehlike {
    background: #ff4d6d;
    color: #fff;
}

.arkadas-btn.bilgi {
    background: #007bff;
    color: #fff;
}

.arkadas-btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.arkadas-bilgi-kutu {
    text-align: center;
    color: #7a88a3;
    font-size: 0.95rem;
    padding: 20px;
    background: #f9fbff;
    border-radius: 12px;
}

.arama-sonuclari {
    margin-top: 14px;
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 992px) {
    .arkadas-paneller {
        grid-template-columns: 1fr;
    }

    .arkadas-baslik {
        flex-direction: column;
        align-items: flex-start;
    }

    .arkadas-ozet {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .arkadas-ozet {
        flex-direction: column;
        gap: 10px;
    }

    .arkadas-kart,
    .istek-kart {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .arkadas-aksiyon {
        width: 100%;
    }

    .arkadas-btn {
        flex: 1;
        text-align: center;
    }
}

/* Toast Bildirimleri */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(400px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 400px;
    word-wrap: break-word;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    background: #27ae60;
}

.toast-error {
    background: #e74c3c;
}

.toast-warning {
    background: #f39c12;
}

.toast-info {
    background: #3498db;
}

/* ================================
   Liderlik Tablosu Stilleri
   ================================ */

.liderlik-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #021e36 0%, #033f5c 50%, #056085 100%);
}

.liderlik-section .section-header {
    margin-bottom: 3rem;
}

.liderlik-section .section-title {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.liderlik-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.liderlik-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

/* Site İstatistik Paneli */
.site-istatistik-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.site-istatistik-panel h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-istatistik-panel h3 i {
    color: #4caf50;
}

.site-istatistik-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.site-istatistik-kart {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

.site-istatistik-kart:hover {
    transform: translateY(-3px);
}

.site-istatistik-kart i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.site-istatistik-kart .deger {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.site-istatistik-kart .etiket {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Liderlik Tablo Paneli */
.liderlik-tablo-panel {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.liderlik-tablo-panel h3 {
    color: #021e36;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.liderlik-tablo-panel h3 i {
    color: #ffd700;
}

.liderlik-tablo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.liderlik-satir {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.liderlik-satir:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.liderlik-satir.ilk-uc {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.liderlik-sira {
    width: 40px;
    text-align: center;
    font-weight: 700;
    color: #666;
}

.liderlik-sira i {
    font-size: 1.3rem;
}

.liderlik-sira span {
    font-size: 1rem;
}

.liderlik-oyuncu {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.liderlik-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.liderlik-bilgi {
    display: flex;
    flex-direction: column;
}

.liderlik-isim {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.liderlik-seviye {
    font-size: 0.75rem;
    color: #888;
}

.liderlik-stat {
    text-align: right;
}

.liderlik-oran {
    display: block;
    font-weight: 700;
    color: #4caf50;
    font-size: 1.1rem;
}

.liderlik-oyun {
    font-size: 0.75rem;
    color: #888;
}

.liderlik-bos {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.liderlik-bos i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 15px;
}

.liderlik-bos p {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .liderlik-container {
        grid-template-columns: 1fr;
    }
    
    .site-istatistik-panel {
        order: 2;
    }
    
    .liderlik-tablo-panel {
        order: 1;
    }
}

@media (max-width: 480px) {
    .site-istatistik-grid {
        grid-template-columns: 1fr;
    }
    
    .liderlik-satir {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .liderlik-stat {
        width: 100%;
        text-align: left;
        padding-left: 52px;
    }
}