/* ============================================
   HEADER - TEK SATIR ZORUNLU!
   ============================================ */

.header {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap !important;
    /* ZORUNLU: Asla alt alta gitmesin! */
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-icon svg {
    width: 32px;
    height: 32px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    white-space: nowrap;
}

/* Small Creator Credit (under title) */
.creator-credit-small {
    font-size: 0.625rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0.7;
    margin-top: 2px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.creator-credit-small:hover {
    color: #667eea;
    opacity: 1;
}

.creator-credit-small strong {
    font-weight: 800;
    color: var(--text-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-actions .social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.938rem;
    transition: all 0.2s;
}

.header-actions .social-link:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Donate Button */
.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.2s;
    white-space: nowrap;
}

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

.donate-btn i {
    font-size: 1rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive - Sadece çok küçük ekranlar için */
@media (max-width: 640px) {
    .header-content {
        gap: 8px;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .creator-credit-small {
        font-size: 0.5rem;
    }

    .header-actions .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .donate-btn span {
        display: none;
    }

    .donate-btn {
        padding: 0;
        width: 32px;
        height: 32px;
        justify-content: center;
        border-radius: 50%;
    }

    .donate-btn i {
        font-size: 0.9rem;
    }
}

/* ============================================
   DONATE MODAL
   ============================================ */

.donate-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.donate-modal.hidden {
    display: none;
}

.donate-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.donate-modal-content {
    position: relative;
    background: var(--bg-secondary);
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.donate-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.2s;
}

.donate-modal-close:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg);
}

.donate-modal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.donate-modal-content>p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Donate Sections */
.donate-section {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.donate-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.donate-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* Crypto Address */
.crypto-address {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.crypto-address code {
    flex: 1;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--text-primary);
    word-break: break-all;
}

/* Wise Info */
.wise-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wise-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wise-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
}

.wise-value {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.wise-value code {
    flex: 1;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--text-primary);
}

/* Copy Button */
.copy-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

/* Thank You Message */
.thank-you-message {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Responsive - Modal */
@media (max-width: 640px) {
    .donate-modal-content {
        padding: 24px;
    }

    .donate-modal-content h2 {
        font-size: 1.5rem;
    }

    .crypto-address code,
    .wise-value code {
        font-size: 0.75rem;
    }
}