/* =====================
   My Sponsors Page CSS
   ===================== */

.my-sponsors-hero {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff4444;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.my-sponsors-hero h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    border-bottom: 2px solid #ff4444;
    /* Görseldeki detay için eklendi */
    display: inline-block;
    padding-bottom: 8px;
}

.my-sponsors-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Login Warning */
.login-warning {
    text-align: center;
    padding: 80px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.login-warning h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.login-warning p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
}

.btn-login {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* Section Info */
.my-sponsors-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.section-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Sponsors Grid */
.my-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* Sponsor Card - Modern Compact Reference Style */
.my-sponsor-card {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    min-height: 70px;
    /* Kept from original, not explicitly removed */
}

.my-sponsor-card:hover {
    background: #111;
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.sponsor-card-left {
    flex: 0 0 85px;
    /* Küçültüldü */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.sponsor-card-left img {
    max-height: 25px;
    /* Daha küçük logo */
    max-width: 80px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s;
}

.sponsor-card-left:hover img {
    filter: brightness(1.1);
}

.sponsor-name-tag {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    font-weight: 700;
}

.sponsor-card-middle {
    flex: 1;
    display: flex;
    align-items: center;
}

.sponsor-username-input {
    width: 100%;
    padding: 7px 12px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    font-size: 0.72rem;
    /* Daha küçük font (metinlerin sığması için) */
    font-family: inherit;
    outline: none;
    text-align: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sponsor-username-input:focus {
    border-color: rgba(255, 255, 255, 0.2);
    background: #000;
}

.sponsor-username-input::placeholder {
    color: rgba(255, 255, 255, 0.15);
}

.sponsor-card-right {
    flex: 0 0 55px;
    /* Çizimdeki mavi alan gibi daraltıldı */
    display: flex;
    justify-content: flex-end;
}

.btn-save-sponsor {
    width: 100%;
    padding: 5px 0;
    /* Daha küçük dikey padding */
    background: #fff;
    color: #000;
    border: none;
    border-radius: 7px;
    font-weight: 800;
    font-size: 0.68rem;
    /* Daha dar alana sığması için küçültüldü */
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: capitalize;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    text-align: center;
}

.btn-save-sponsor:hover {
    background: #fdfdfd;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-save-sponsor.saved {
    background: #fff;
    color: #000;
}

.sponsor-save-msg {
    position: absolute;
    bottom: -18px;
    left: 15px;
    font-size: 0.65rem;
    font-weight: 600;
    pointer-events: none;
    /* Original color #00ff88 removed as per instruction to make messages cleaner, implying default text color or no explicit color */
}

/* Loading */
.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 60px;
}

/* Responsive */
@media (max-width: 1100px) {
    .my-sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .my-sponsors-grid {
        grid-template-columns: 1fr;
    }

    .my-sponsor-card {
        padding: 15px;
    }
}