/* ===== CSS VARIABLES ===== */
:root {
    --primary: #ff6600;
    --primary-light: #ff8533;
    --primary-dark: #e65c00;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== HEADER ===== */
.header {
    background: #fff;
    border-bottom: 3px solid #ff6600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: 60px;
}

.header-left img {
    height: 48px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 60px;
}

.lang-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
}

.lang-selector img {
    width: 28px;
    height: auto;
    border-radius: 4px;
    display: block;
}

.lang-selector:hover {
    background: #f5f5f5;
}

.btn-donate-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-donate-header:hover {
    background: linear-gradient(135deg, #e65c00, #ff6600);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    transform: translateY(-1px);
}

.btn-donate-header i {
    font-size: 15px;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-login:hover {
    border-color: #ff6600;
    color: #ff6600;
}

.btn-login i {
    font-size: 16px;
}

.btn-login .sub-text {
    font-size: 11px;
    color: #999;
}

/* Header Google Button */
.btn-google-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-google-header:hover {
    border-color: #4285F4;
    color: #4285F4;
    box-shadow: 0 2px 8px rgba(66,133,244,0.15);
}

.btn-google-header svg {
    flex-shrink: 0;
}

/* Header Register Button */
.btn-register-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff6600, #e65100);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255,102,0,0.25);
}

.btn-register-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255,102,0,0.35);
    color: #fff;
}

.btn-register-header i {
    font-size: 13px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 130px 20px 60px;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero h1 span {
    display: block;
    color: #333;
    font-size: 32px;
}

/* ===== SEARCH BAR ===== */
.search-wrapper {
    max-width: 620px;
    margin: 0 auto 30px;
    position: relative;
}

.btn-all-streamers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #fff;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-all-streamers:hover {
    border-color: #ff6600;
    color: #ff6600;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.15);
}

.search-container {
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 20px 55px 20px 26px;
    border: 2px solid #222;
    border-radius: 16px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
    color: #222;
}

.search-container input:focus {
    border-color: #333;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.search-container input::placeholder {
    color: #bbb;
}

.search-reload {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 8px;
}

.search-reload:hover {
    color: #333;
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.12);
    z-index: 100;
    overflow: hidden;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    text-decoration: none;
    color: #222;
    transition: background 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f9f9f9;
}

.result-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: #fff;
}

.result-name {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.result-arrow {
    font-size: 14px;
    color: #ccc;
    transition: color 0.2s, transform 0.2s;
}

.search-result-item:hover .result-arrow {
    color: #ff6600;
    transform: translateX(3px);
}

.search-no-result {
    padding: 24px 20px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.search-no-result i {
    margin-right: 6px;
    color: #ccc;
}

.search-no-result strong {
    color: #555;
}

/* ===== STREAMERS SECTION ===== */
.streamers-section {
    padding: 20px 40px 60px;
    position: relative;
}

.streamers-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.wave-line {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    z-index: 0;
}

.wave-line svg {
    width: 100%;
    height: 60px;
    margin-top: -30px;
}

.wave-line svg path {
    stroke: #ddd;
    stroke-width: 2;
    stroke-dasharray: 8, 8;
    fill: none;
}

.streamer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    flex: 1;
    transition: transform 0.3s;
    cursor: pointer;
}

.streamer-card:hover {
    transform: translateY(-8px);
}

.streamer-avatar {
    width: 130px;
    height: 130px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s;
    border: 3px solid #fff;
}

.streamer-card:hover .streamer-avatar {
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.2);
}

.streamer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.streamer-name {
    margin-top: 12px;
    padding: 4px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.streamer-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex: 1;
}

.streamer-count .count-number {
    font-size: 32px;
    font-weight: 800;
    color: #333;
}

.streamer-count .count-number span {
    color: #ff6600;
}

.streamer-count .count-brand {
    font-size: 12px;
    color: #ff6600;
    font-weight: 600;
}

/* ===== SHOW ALL BUTTON ===== */
.show-all-container {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 40px;
}

.btn-show-all {
    display: inline-block;
    padding: 16px 80px;
    background: linear-gradient(135deg, #ff6600 0%, #e91e63 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    text-decoration: none;
}

.btn-show-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

/* ===== HELP BUTTON ===== */
.help-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #888;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 999;
}

.help-btn:hover {
    border-color: #ff6600;
    color: #ff6600;
    transform: scale(1.1);
}

/* ===== DONATION SHOWCASE (Stacked Cards) ===== */
.donation-showcase {
    background: linear-gradient(135deg, #ffb074 0%, #ff9a52 100%);
    padding: 120px 20px;
    overflow: hidden;
}

.showcase-inner {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stacked-cards {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 360px;
    perspective: 1000px;
}

.d-card {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.d-card-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.d-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: #bbb;
}

.d-card-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.d-card-msg {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.d-card-sender {
    font-size: 13px;
    color: #999;
    margin-top: 2px;
}

.d-card-amount {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
    margin-left: 16px;
    flex-shrink: 0;
}

/* Stacked positions - bottom card (most hidden) to top card (most visible) */
.d-card-5 {
    bottom: 240px;
    transform: scale(0.82);
    opacity: 0.3;
    z-index: 1;
    filter: blur(1px);
}

.d-card-4 {
    bottom: 195px;
    transform: scale(0.86);
    opacity: 0.45;
    z-index: 2;
    filter: blur(0.5px);
}

.d-card-3 {
    bottom: 140px;
    transform: scale(0.91);
    opacity: 0.6;
    z-index: 3;
}

.d-card-2 {
    bottom: 75px;
    transform: scale(0.96);
    opacity: 0.8;
    z-index: 4;
}

.d-card-1 {
    bottom: 0;
    transform: scale(1);
    opacity: 1;
    z-index: 5;
}

/* Hover effect on showcase */
.stacked-cards:hover .d-card-1 {
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transform: scale(1.02);
}

.stacked-cards:hover .d-card-2 {
    transform: scale(0.97);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .donation-showcase {
        padding: 60px 16px;
    }

    .stacked-cards {
        max-width: 100%;
        height: 280px;
    }

    .d-card {
        padding: 14px 18px;
        border-radius: 12px;
    }

    .d-card-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .d-card-msg {
        font-size: 13px;
    }

    .d-card-sender {
        font-size: 11px;
    }

    .d-card-amount {
        font-size: 16px;
    }

    .d-card-5 {
        bottom: 210px;
    }

    .d-card-4 {
        bottom: 170px;
    }

    .d-card-3 {
        bottom: 120px;
    }

    .d-card-2 {
        bottom: 65px;
    }
}

@media (max-width: 400px) {
    .donation-showcase {
        padding: 50px 12px;
    }

    .stacked-cards {
        height: 260px;
    }

    .d-card {
        padding: 12px 14px;
    }

    .d-card-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .d-card-msg {
        font-size: 12px;
    }

    .d-card-amount {
        font-size: 14px;
    }

    .d-card-5 {
        bottom: 200px;
    }

    .d-card-4 {
        bottom: 160px;
    }

    .d-card-3 {
        bottom: 110px;
    }

    .d-card-2 {
        bottom: 58px;
    }
}

/* ===== HOW IT WORKS ===== */
.how-section {
    padding: 80px 40px;
    background: #fafafa;
}

.how-section h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.how-section h2 span {
    color: #ff6600;
}

.how-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.how-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.how-step .step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6600, #e91e63);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.how-step .step-number {
    font-size: 12px;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.how-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.how-step p {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}


/* ===== SON EKLENEN YAYINCILAR ===== */
.latest-streamers-section {
    padding: 50px 40px 40px;
    text-align: center;
}

.latest-streamers-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 32px;
}

.latest-streamers-section h2 span {
    color: #ff6600;
}

.latest-streamers-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.latest-streamer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 16px;
    padding: 18px 14px 16px;
    width: 135px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    position: relative;
}

.latest-streamer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.latest-streamer-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
    border: 3px solid #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.latest-streamer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-streamer-avatar i {
    font-size: 28px;
    color: rgba(255,255,255,0.9);
}

.latest-streamer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.latest-streamer-name {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
}

.latest-streamer-username {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
}

.latest-streamer-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    box-shadow: 0 2px 6px rgba(255,165,0,0.4);
}

@media (max-width: 768px) {
    .latest-streamers-section {
        padding: 36px 16px 30px;
    }

    .latest-streamers-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .latest-streamers-grid {
        gap: 10px;
    }

    .latest-streamer-card {
        width: 110px;
        padding: 14px 10px 12px;
    }

    .latest-streamer-avatar {
        width: 58px;
        height: 58px;
    }

    .latest-streamer-name {
        font-size: 12px;
        max-width: 90px;
    }

    .latest-streamer-username {
        font-size: 10px;
        max-width: 90px;
    }
}

@media (max-width: 480px) {
    .latest-streamer-card {
        width: calc(33.33% - 10px);
        min-width: 95px;
    }
}


/* ===== TRUST CARDS ===== */
.trust-section {
    padding: 50px 40px 60px;
    background: #f8f9fa;
}

.trust-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.trust-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.trust-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(38, 198, 166, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #26c6a6;
    margin-bottom: 18px;
}

.trust-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.trust-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.payment-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 36px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fff;
    font-size: 22px;
    color: #333;
}

.payment-badge .fa-cc-visa {
    color: #1a1f71;
}

.payment-badge .fa-cc-mastercard {
    color: #eb001b;
}

.payment-badge-text {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
}

.payment-badge-more {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    border-style: dashed;
}

@media (max-width: 768px) {
    .trust-section {
        padding: 30px 16px 40px;
    }

    .trust-cards {
        flex-direction: column;
        gap: 16px;
    }

    .trust-card {
        padding: 22px 20px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #fff;
    border-top: 1px solid #eee;
}

/* Footer Üst Bant */
.footer-top-bar {
    border-bottom: 1px solid #eee;
    padding: 25px 40px;
}

.footer-top-links {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-top-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #333;
    flex: 1;
    padding: 10px 0;
    transition: all 0.3s;
}

.footer-top-link:hover {
    color: #ff6600;
}

.footer-top-link .ftl-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #555;
    flex-shrink: 0;
    transition: all 0.3s;
}

.footer-top-link:hover .ftl-icon {
    background: #fff3e0;
    color: #ff6600;
}

.footer-top-link:nth-child(3) .ftl-icon {
    background: #fff3e0;
    color: #ff6600;
}

.footer-top-link .ftl-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.footer-top-link .ftl-text p {
    font-size: 12px;
    color: #999;
    line-height: 1.3;
}

/* Footer Ana İçerik */
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 30px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-col-brand {
    flex: 0 0 220px;
}

.footer-col-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col-info {
    flex: 1.5;
    font-style: normal;
}

.footer-col-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.footer-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.footer-info-row .info-label {
    color: #666;
    font-weight: 400;
}

.footer-info-row a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-info-row a:hover {
    color: #ff6600;
    text-decoration: underline;
}

.footer-col-links {
    flex: 1;
}

.footer-col-links h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.footer-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link-item:hover {
    color: #ff6600;
}

.footer-link-item i {
    font-size: 11px;
    color: #ccc;
    transition: color 0.2s;
}

.footer-link-item:hover i {
    color: #ff6600;
}

/* Footer Alt */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #aaa;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #ff6600;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .header-inner {
        padding: 10px 20px;
    }

    .header-left {
        margin-left: 10px;
    }

    .header-right {
        margin-right: 10px;
    }

    .footer-main {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px 20px;
    }

    .footer-col-brand {
        flex: 0 0 100%;
    }

    .footer-col-info,
    .footer-col-links {
        flex: 1;
        min-width: 200px;
    }

    .footer-top-links {
        flex-wrap: wrap;
    }

    .footer-top-link {
        flex: 0 0 48%;
    }

    .how-steps {
        gap: 20px;
    }

    .streamers-section {
        padding: 20px 20px 40px;
    }
}

/* ===== RESPONSIVE - MOBILE LARGE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-inner {
        padding: 10px 16px;
    }

    .header-left {
        margin-left: 0;
    }

    .header-left img {
        height: 38px;
    }

    .header-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 16px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        margin-right: 0;
        z-index: 1000;
    }

    .header-right.mobile-open {
        right: 0;
    }

    .btn-login {
        width: 100%;
        justify-content: center;
    }

    .btn-google-header {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .btn-register-header {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .btn-donate-header {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .lang-selector {
        width: 100%;
        justify-content: center;
        padding: 12px;
        background: #f9f9f9;
        border-radius: 10px;
    }

    /* Mobil: dropdown menüyü inline göster */
    .auth-dropdown {
        width: 100%;
    }

    .auth-dropdown .btn-login {
        width: 100%;
        justify-content: flex-start;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
        padding: 14px 0;
    }

    .auth-dropdown .btn-login-arrow {
        display: none;
    }

    .auth-dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        width: 100%;
        pointer-events: auto !important;
    }

    .auth-dropdown-item {
        padding: 14px 12px;
        border-radius: 10px;
    }

    .auth-dropdown-item:hover {
        background: #f9f9f9;
    }

    .auth-dropdown-item + .auth-dropdown-item {
        border-top: none;
    }

    .btn-user-logged {
        border: none !important;
    }

    .user-avatar-small {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .btn-user-logged .sub-text {
        color: #ff6600;
        font-weight: 600;
    }

    .hero {
        padding: 90px 16px 40px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero h1 span {
        font-size: 20px;
    }

    .search-wrapper {
        margin: 0 auto 30px;
        padding: 0 8px;
    }

    .search-container input {
        padding: 14px 50px 14px 18px;
        font-size: 14px;
        border-radius: 12px;
    }

    .search-results {
        border-radius: 12px;
    }

    .search-result-item {
        padding: 12px 16px;
        gap: 12px;
    }

    .result-avatar {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .result-name {
        font-size: 14px;
    }

    .streamers-wave {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px 0;
    }

    .streamer-card {
        flex: 0 0 42%;
    }

    .streamer-count {
        flex: 0 0 100%;
        order: -1;
        padding: 10px 0;
    }

    .streamer-count .count-number {
        font-size: 24px;
    }

    .wave-line {
        display: none;
    }

    .streamer-avatar {
        width: 100px;
        height: 100px;
        border-radius: 14px;
    }

    .streamer-name {
        font-size: 12px;
    }

    .btn-show-all {
        padding: 14px 40px;
        font-size: 14px;
        border-radius: 10px;
    }

    .how-section {
        padding: 50px 16px;
    }

    .how-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .how-steps {
        flex-direction: column;
        gap: 16px;
    }

    .how-step {
        padding: 24px 16px;
    }

    .how-step .step-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .how-step h3 {
        font-size: 16px;
    }

    .how-step p {
        font-size: 13px;
    }

    /* Footer Mobile */
    .footer-top-bar {
        padding: 16px;
    }

    .footer-top-links {
        flex-direction: column;
        gap: 12px;
    }

    .footer-top-link {
        flex: 0 0 100%;
        padding: 8px 0;
    }

    .footer-main {
        flex-direction: column;
        padding: 24px 16px;
        gap: 24px;
    }

    .footer-col-brand {
        flex: 0 0 auto;
    }

    .footer-col-info,
    .footer-col-links {
        flex: 0 0 100%;
    }

    .footer-col-info h4,
    .footer-col-links h4 {
        margin-bottom: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 16px;
    }

    .footer-bottom a {
        margin-left: 10px;
    }

    .help-btn {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* ===== RESPONSIVE - MOBILE SMALL ===== */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 20px;
    }

    .hero h1 span {
        font-size: 17px;
    }

    .streamer-card {
        flex: 0 0 46%;
    }

    .streamer-avatar {
        width: 85px;
        height: 85px;
    }

    .streamer-count .count-number {
        font-size: 20px;
    }

    .btn-show-all {
        padding: 12px 30px;
        font-size: 13px;
    }

    .footer-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ===== AUTH DROPDOWN ===== */
.auth-dropdown {
    position: relative;
}

.auth-dropdown .btn-login {
    border: 2px solid #e0e0e0;
}

.btn-login-arrow {
    font-size: 11px;
    color: #aaa;
    transition: transform 0.3s;
}

.auth-dropdown.open .btn-login-arrow {
    transform: rotate(180deg);
}

.auth-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1100;
    overflow: hidden;
}

.auth-dropdown.open .auth-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.auth-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.auth-dropdown-item:hover {
    background: #fff3e0;
    color: #ff6600;
}

.auth-dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #888;
    transition: color 0.2s;
}

.auth-dropdown-item:hover i {
    color: #ff6600;
}

.auth-dropdown-item + .auth-dropdown-item {
    border-top: 1px solid #f5f5f5;
}

/* ===== AUTH PAGES (Login / Register) ===== */
.auth-section {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f8f9fa;
}

.auth-container {
    display: flex;
    max-width: 960px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    min-height: 600px;
}

/* Auth Left Panel */
.auth-left {
    flex: 0 0 380px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.auth-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,102,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.auth-left::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(233,30,99,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.auth-left-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.auth-logo {
    height: 50px;
    width: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.auth-left-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.auth-left-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.auth-feature i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,102,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ff6600;
    flex-shrink: 0;
}

/* Auth Right Panel - Form */
.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-form-container {
    width: 100%;
    max-width: 400px;
}

.auth-form-container h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.auth-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 28px;
}

/* Form Elements */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper > i:first-child {
    position: absolute;
    left: 14px;
    font-size: 14px;
    color: #bbb;
    pointer-events: none;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fafafa;
    -webkit-appearance: none;
    appearance: none;
}

.input-wrapper input:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 4px rgba(255,102,0,0.08);
    background: #fff;
}

.input-wrapper input::placeholder {
    color: #ccc;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: #ff6600;
}

/* Password Strength */
.password-strength {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 4px;
    transition: width 0.3s, background 0.3s;
    background: #ddd;
}

.strength-text {
    font-size: 11px;
    color: #bbb;
    white-space: nowrap;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    accent-color: #ff6600;
    flex-shrink: 0;
    margin-top: 1px;
}

.checkbox-label a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.forgot-link {
    font-size: 13px;
    color: #ff6600;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6600, #e65100);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,102,0,0.3);
    margin-top: 4px;
}

.btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,102,0,0.4);
}

.btn-register {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    box-shadow: 0 4px 15px rgba(233,30,99,0.3);
}

.btn-register:hover {
    box-shadow: 0 6px 20px rgba(233,30,99,0.4);
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.auth-divider span {
    padding: 0 16px;
    font-size: 12px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-social:hover {
    border-color: #ddd;
    background: #f9f9f9;
    transform: translateY(-1px);
}

.btn-social i {
    font-size: 18px;
}

.btn-google i { color: #ea4335; }
.btn-discord i { color: #5865f2; }
.btn-twitch i { color: #9146ff; }

.btn-google:hover { border-color: #ea4335; color: #ea4335; }
.btn-discord:hover { border-color: #5865f2; color: #5865f2; }
.btn-twitch:hover { border-color: #9146ff; color: #9146ff; }

/* Auth Switch */
.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

.auth-switch a {
    color: #ff6600;
    font-weight: 600;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* ===== COMPACT REGISTER ===== */
.auth-container-compact {
    max-width: 540px;
    min-height: auto;
}

.auth-right-full {
    flex: 1;
    padding: 36px 40px;
}

.auth-compact-header {
    text-align: center;
    margin-bottom: 6px;
}

.auth-compact-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 16px;
    display: block;
}

.auth-container-compact .auth-form {
    gap: 14px;
}

.auth-container-compact .form-group label {
    font-size: 12px;
    margin-bottom: 4px;
}

.auth-container-compact .input-wrapper input {
    padding: 10px 14px 10px 38px;
    font-size: 13px;
}

.auth-container-compact .input-wrapper > i:first-child {
    font-size: 13px;
    left: 12px;
}

.auth-container-compact .btn-auth-submit {
    padding: 12px;
    font-size: 14px;
    margin-top: 2px;
}

.auth-container-compact .auth-subtitle {
    margin-bottom: 20px;
    font-size: 13px;
}

.auth-container-compact .auth-switch {
    margin-top: 16px;
    font-size: 13px;
}

.auth-container-compact .form-options {
    margin-top: -2px;
}

.auth-container-compact .checkbox-label {
    font-size: 12px;
}

/* ===== AUTH RESPONSIVE ===== */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        border-radius: 16px;
    }

    .auth-left {
        flex: 0 0 auto;
        padding: 30px 24px;
    }

    .auth-left-content h2 {
        font-size: 22px;
    }

    .auth-features {
        display: none;
    }

    .auth-right {
        padding: 24px;
    }

    .auth-form-container h1 {
        font-size: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 18px;
    }

    .auth-right-full {
        padding: 24px 20px;
    }

    .auth-container-compact .form-row {
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 16px 12px;
    }

    .auth-left {
        padding: 24px 16px;
    }

    .auth-left-content p {
        display: none;
    }

    .auth-right {
        padding: 20px 16px;
    }

    .auth-right-full {
        padding: 20px 16px;
    }

    .form-options {
        flex-direction: column;
        gap: 10px;
    }

    .social-login {
        gap: 8px;
    }

    .btn-social {
        padding: 10px;
        font-size: 13px;
    }
}

/* ===== GOOGLE ONLY LOGIN ===== */
.auth-google-only {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-google-only h1 {
    text-align: center;
}

.auth-google-only .auth-subtitle {
    text-align: center;
}

.google-login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 10px 0 24px;
    width: 100%;
}

.google-icon-big {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #4285F4;
    box-shadow: 0 4px 15px rgba(66,133,244,0.15);
}

.google-info-text {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    max-width: 320px;
}

.btn-google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 340px;
    padding: 14px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.btn-google-login:hover {
    border-color: #4285F4;
    color: #4285F4;
    box-shadow: 0 4px 16px rgba(66,133,244,0.18);
    transform: translateY(-2px);
}

.btn-google-login svg {
    flex-shrink: 0;
}

.google-terms {
    margin-top: 0;
}

.google-terms p {
    font-size: 12px;
    color: #aaa;
    line-height: 1.5;
}

.google-terms a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 500;
}

.google-terms a:hover {
    text-decoration: underline;
}

/* ===== FLASH MESSAGES ===== */
.flash-message {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    padding: 16px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.15);
    animation: flashSlideIn 0.4s ease;
    max-width: 400px;
    width: auto;
    transition: opacity 0.4s, transform 0.4s;
}

.flash-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.flash-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.flash-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    margin-left: auto;
    padding: 0 4px;
    opacity: 0.7;
}

.flash-close:hover {
    opacity: 1;
}

@keyframes flashSlideIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== FORM ERRORS ===== */
.form-errors {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-error-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fff0f0;
    border: 1px solid #fdd;
    border-radius: 8px;
    font-size: 13px;
    color: #c0392b;
    line-height: 1.4;
}

.form-error-item i {
    flex-shrink: 0;
    font-size: 14px;
}

/* ===== USER AVATAR (Header) ===== */
.user-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6600, #e91e63);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
}

.user-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-user-logged {
    border-color: #ff6600 !important;
}

.auth-dropdown-logout {
    color: #dc3545 !important;
}

.auth-dropdown-logout i {
    color: #dc3545 !important;
}

.auth-dropdown-logout:hover {
    background: #fff0f0 !important;
}

/* ===== FOCUS STYLES (Accessibility) ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid #ff6600;
    outline-offset: 2px;
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1100;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    border-top: 1px solid #e5e7eb;
}

.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: #999;
    font-size: 10px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 4px 8px;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.mob-nav-item i {
    font-size: 20px;
}

.mob-nav-item.active,
.mob-nav-item:hover {
    color: #ff6600;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    footer {
        margin-bottom: 60px;
    }
}

/* ===== PROFILE PAGE ===== */
.profile-main {
    padding: 90px 20px 40px;
    background: #f5f5f7;
    min-height: 100vh;
}

.profile-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

/* Sidebar */
.profile-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.profile-user-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 16px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6600, #e91e63);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 14px;
}

.profile-username {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.profile-email {
    font-size: 13px;
    color: #888;
    margin-bottom: 14px;
    word-break: break-all;
}

.profile-balance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
}

.profile-nav {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.profile-nav-item:hover {
    background: #f9f9f9;
    color: #ff6600;
}

.profile-nav-item.active {
    background: #fff3e0;
    color: #ff6600;
    border-left-color: #ff6600;
    font-weight: 600;
}

.profile-nav-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.profile-nav-item + .profile-nav-item {
    border-top: 1px solid #f5f5f5;
}

.profile-nav-logout {
    color: #dc3545;
}

.profile-nav-logout:hover {
    background: #fff0f0;
    color: #dc3545;
}

/* Content */
.profile-content {
    flex: 1;
    min-width: 0;
}

.profile-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-section-title i {
    color: #ff6600;
}

/* Stats */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.profile-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.stat-icon-balance { background: linear-gradient(135deg, #ff6600, #ff8533); }
.stat-icon-email { background: linear-gradient(135deg, #667eea, #764ba2); }
.stat-icon-phone { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.stat-icon-date { background: linear-gradient(135deg, #4facfe, #00f2fe); }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.stat-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* Info Card */
.profile-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.profile-info-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Balance */
.balance-current {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    color: #fff;
}

.balance-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 6px;
}

.balance-amount {
    font-size: 36px;
    font-weight: 800;
}

.balance-amounts h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 14px;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.amount-btn {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.amount-btn:hover,
.amount-btn.selected {
    border-color: #ff6600;
    color: #ff6600;
    background: #fff3e0;
}

.amount-custom {
    margin-bottom: 18px;
}

.amount-custom label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.custom-amount-input {
    position: relative;
}

.custom-amount-input input {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.custom-amount-input input:focus {
    border-color: #ff6600;
}

.currency-symbol {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 600;
    color: #888;
}

.btn-load-balance {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-load-balance:hover {
    background: linear-gradient(135deg, #e65c00, #ff6600);
    box-shadow: 0 4px 20px rgba(255,102,0,0.3);
}

/* Transactions */
.balance-history {
    margin-top: 30px;
}

.balance-history h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 14px;
}

.transaction-list {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid #f5f5f5;
}

.transaction-item:last-child {
    border-bottom: none;
}

.tx-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tx-icon.tx-deposit { background: #e8f5e9; color: #4caf50; }
.tx-icon.tx-withdrawal,
.tx-icon.tx-donation_sent { background: #fce4ec; color: #e91e63; }
.tx-icon.tx-donation_received { background: #e3f2fd; color: #2196f3; }

.tx-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tx-desc {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.tx-date {
    font-size: 12px;
    color: #888;
}

.tx-amount {
    font-size: 15px;
    font-weight: 700;
}

.tx-amount.tx-deposit,
.tx-amount.tx-donation_received { color: #4caf50; }
.tx-amount.tx-withdrawal,
.tx-amount.tx-donation_sent { color: #e91e63; }

/* Verify Cards */
.verify-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.verify-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    flex-wrap: wrap;
}

.verify-card.verified {
    border-left: 4px solid #4caf50;
}

.verify-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #888;
}

.verify-card.verified .verify-icon {
    background: #e8f5e9;
    color: #4caf50;
}

.verify-info {
    flex: 1;
    min-width: 0;
}

.verify-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.verify-info p {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

.verify-badge {
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.verify-badge.verified { color: #4caf50; }
.verify-badge.unverified { color: #f44336; }

.btn-verify {
    padding: 10px 20px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-verify:hover {
    background: #e65c00;
}

.phone-add-form {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
}

.phone-add-form input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.phone-add-form input:focus {
    border-color: #ff6600;
}

/* Settings */
.settings-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 16px;
}

.settings-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
}

.settings-form .form-group {
    margin-bottom: 14px;
}

.settings-danger {
    border-left: 4px solid #dc3545;
}

.settings-danger p {
    font-size: 13px;
    color: #888;
    margin-bottom: 14px;
}

.btn-danger {
    padding: 10px 20px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-danger:hover {
    background: #c82333;
}

/* Profile Streamer Badge */
.profile-streamer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 6px;
}

/* Avatar Upload */
.profile-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}

.profile-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.profile-avatar-upload {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    border: 2px solid #fff;
    transition: background 0.2s;
}

.profile-avatar-upload:hover {
    background: #e55a00;
}

/* Settings Description */
.settings-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Form Row 2 Columns */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Settings Form */
.settings-form .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.settings-form .form-group input,
.settings-form .form-group textarea,
.settings-form .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    background: #fafafa;
}

.settings-form .form-group input:focus,
.settings-form .form-group textarea:focus {
    border-color: #ff6600;
    background: #fff;
}

.settings-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* OBS Alert Box */
.obs-alert-box {
    background: linear-gradient(135deg, #1a1d23, #2d3142);
    border-radius: 14px;
    padding: 24px;
    color: #fff;
}

.obs-url-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    margin-bottom: 8px;
}

.obs-url-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.obs-url-wrap input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #3d4155;
    border-radius: 10px;
    background: #252836;
    color: #ff6600;
    font-size: 13px;
    font-family: 'Poppins', monospace;
    outline: none;
}

.btn-copy-url {
    padding: 10px 16px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-copy-url:hover {
    background: #e55a00;
}

.obs-url-hint {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.obs-no-token {
    font-size: 14px;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
}

/* Color Input Wrap */
.color-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-picker {
    width: 44px !important;
    height: 44px !important;
    padding: 2px !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 10px !important;
    cursor: pointer;
    background: transparent !important;
}

.color-text {
    flex: 1;
    font-family: monospace;
    font-size: 14px;
    color: #666 !important;
    background: #f5f5f5 !important;
}

/* Test Alert Button */
.btn-test-alert {
    margin-top: 16px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-test-alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

/* Donations List */
.donations-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.donation-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: background 0.2s;
}

.donation-item:hover {
    background: #f0f0f0;
}

.donation-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.donation-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.donation-item-left strong {
    font-size: 14px;
    color: #333;
    display: block;
}

.donation-item-left p {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.donation-item-left small {
    font-size: 11px;
    color: #aaa;
}

.donation-item-amount {
    font-size: 15px;
    font-weight: 700;
    color: #ff6600;
    white-space: nowrap;
}

/* Profile Responsive */
@media (max-width: 900px) {
    .profile-container {
        flex-direction: column;
    }

    .profile-sidebar {
        width: 100%;
    }

    .profile-user-card {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 20px;
    }

    .profile-avatar {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin: 0;
        flex-shrink: 0;
    }

    .profile-email {
        margin-bottom: 8px;
    }

    .profile-nav {
        display: flex;
        overflow-x: auto;
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .profile-nav-item {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 12px 18px;
        font-size: 13px;
    }

    .profile-nav-item.active {
        border-left-color: transparent;
        border-bottom-color: #ff6600;
    }

    .profile-nav-item + .profile-nav-item {
        border-top: none;
    }

    .profile-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .profile-main {
        padding: 80px 12px 30px;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .verify-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .balance-amount {
        font-size: 28px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .obs-url-wrap {
        flex-direction: column;
    }

    .obs-url-wrap input {
        font-size: 11px;
    }

    .donation-item-left p {
        max-width: 160px;
    }
}

/* ===== STREAMER SETTINGS TABS ===== */
.streamer-tabs-nav {
    display: flex;
    gap: 6px;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.streamer-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.streamer-tab-btn:hover {
    background: #f5f5f5;
    color: #555;
}

.streamer-tab-btn.active {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 102, 0, 0.3);
}

.streamer-tab-btn i {
    font-size: 14px;
}

.streamer-tab-content {
    display: none;
    animation: tabFadeIn 0.3s ease;
}

.streamer-tab-content.active {
    display: block;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .streamer-tabs-nav {
        gap: 4px;
        padding: 4px;
    }

    .streamer-tab-btn {
        padding: 10px 12px;
        font-size: 12px;
        gap: 6px;
    }

    .streamer-tab-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .streamer-tabs-nav {
        border-radius: 10px;
    }

    .streamer-tab-btn {
        padding: 10px 8px;
        font-size: 11px;
        flex-direction: column;
        gap: 4px;
    }

    .streamer-tab-btn i {
        font-size: 16px;
    }
}

/* ===== BANNER UPLOAD ===== */
.banner-upload-area {
    margin-top: 16px;
}

.banner-preview {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #f5f5f5;
}

.banner-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.banner-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.banner-placeholder i {
    font-size: 36px;
    opacity: 0.5;
}

.banner-upload-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-upload-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-upload-banner:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff5f0;
}

/* ===== STREAMERS PAGE ===== */
.streamers-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 40px;
}

.streamers-header {
    margin-bottom: 28px;
}

.streamers-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.streamers-title-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.streamers-title-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.streamers-title-left h1 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1d23;
}

.streamers-title-left h1 span {
    color: var(--primary);
}

.streamers-search-box {
    flex: 1;
    max-width: 480px;
}

.streamers-search-form {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 16px;
    transition: border-color 0.2s;
}

.streamers-search-form:focus-within {
    border-color: var(--primary);
    background: #fff;
}

.streamers-search-form i {
    color: #888;
    font-size: 14px;
}

.streamers-search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.streamers-search-clear {
    color: #888;
    font-size: 14px;
    text-decoration: none;
    padding: 4px;
}

.streamers-search-clear:hover {
    color: var(--primary);
}

/* Streamers Grid */
.streamers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.streamer-card-link {
    text-decoration: none;
    color: inherit;
}

.streamer-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    text-align: center;
    padding-bottom: 16px;
}

.streamer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.streamer-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: #1a1d23;
    color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.streamer-card-avatar {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.streamer-card-avatar i {
    font-size: 40px;
    color: rgba(255,255,255,0.9);
}

.streamer-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.streamer-card-name {
    padding: 12px 8px 0;
    font-size: 13px;
    font-weight: 600;
    color: #1a1d23;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Streamers Pagination */
.streamers-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.page-link:hover {
    background: #f5f5f5;
    border-color: var(--primary);
    color: var(--primary);
}

.page-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.streamers-empty {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.streamers-empty i {
    font-size: 48px;
    color: #ddd;
    display: block;
    margin-bottom: 16px;
}

/* ===== APPLICATION PAGE ===== */
.application-page {
    max-width: 680px;
    margin: 0 auto;
    padding: 100px 20px 40px;
}

.application-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 40px 32px;
}

.application-header {
    text-align: center;
    margin-bottom: 32px;
}

.application-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.application-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1d23;
    margin-bottom: 8px;
}

.application-header p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.application-form .form-group {
    margin-bottom: 18px;
}

.application-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.application-form input,
.application-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.application-form input:focus,
.application-form textarea:focus {
    border-color: var(--primary);
}

.input-prefix-wrap {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.input-prefix-wrap:focus-within {
    border-color: var(--primary);
}

.input-prefix {
    padding: 11px 0 11px 12px;
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
    padding-right: 8px;
}

.input-prefix-wrap input {
    border: none !important;
    border-radius: 0;
    padding-left: 10px;
}

.form-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 24px 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-title i {
    color: var(--primary);
}

.btn-submit-application {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-submit-application:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.form-errors {
    margin-bottom: 20px;
}

.form-error-item {
    background: #fef2f2;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== WITHDRAWAL PAGE ===== */
.withdrawal-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.withdrawal-stat {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.withdrawal-stat-label {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-weight: 600;
}

.withdrawal-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.withdrawal-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: #eff6ff;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #3b82f6;
}

.withdrawal-info-box > i {
    color: #3b82f6;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.withdrawal-info-box p {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
}

.withdrawal-calc {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    padding: 10px 14px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
}

.withdrawal-history {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.withdrawal-history-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #f9fafb;
    border-radius: 10px;
    transition: background 0.2s;
}

.withdrawal-history-item:hover {
    background: #f3f4f6;
}

.withdrawal-history-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.withdrawal-history-info {
    flex: 1;
}

.withdrawal-history-amount {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.withdrawal-history-meta {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.withdrawal-history-status {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .withdrawal-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .withdrawal-calc {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .withdrawal-summary {
        grid-template-columns: 1fr;
    }

    .withdrawal-stat-value {
        font-size: 18px;
    }
}


/* ===== STREAMER PROFILE PAGE ===== */
.streamer-profile-page {
    padding-top: 80px;
}

.streamer-banner {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    max-height: 400px;
}

/* Banner fotoğrafı */
.streamer-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Banner üzerinde okunabilirlik için gradient overlay */
.streamer-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.25) 100%);
    z-index: 0;
    pointer-events: none;
}

.streamer-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
    padding: 50px 20px 50px;
}

.streamer-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid rgba(255,255,255,0.3);
}

.streamer-profile-avatar i {
    font-size: 48px;
    color: rgba(255,255,255,0.9);
}

.streamer-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.streamer-profile-info h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verified-badge {
    background: rgba(255,255,255,0.2);
    color: #ffc107;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.streamer-username {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-top: 4px;
}

.streamer-bio {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-top: 8px;
    line-height: 1.6;
}

.streamer-socials {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.social-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.social-link.twitch:hover { background: #9146ff; }
.social-link.youtube:hover { background: #ff0000; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.kick:hover { background: #53fc18; color: #000; }
.social-link.tiktok:hover { background: #000000; }

/* Profile Quick Links */
.profile-quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.profile-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.profile-quick-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.15);
    color: #ff6600;
}

.profile-quick-link i {
    font-size: 24px;
    color: #ff6600;
    transition: transform 0.2s;
}

.profile-quick-link:hover i {
    transform: scale(1.15);
}

/* Donate Box & Stream Layout */
.streamer-content {
    max-width: 1100px;
    margin: 24px auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.streamer-content.has-stream {
    display: grid;
    max-width: 1200px;
    grid-template-columns: 1fr 400px;
    gap: 24px;
    align-items: start;
}

/* Sol kolon: Yayın */
.streamer-left-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Stream Preview Box */
.stream-preview-box {
    background: #1a1d23;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.stream-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #12141a;
}

.stream-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e53e3e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stream-live-badge i {
    font-size: 8px;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.stream-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    color: #fff;
}

.stream-platform-badge.kick {
    background: #53fc18;
    color: #000;
}

.stream-platform-badge.twitch {
    background: #9146ff;
}

.stream-platform-badge.youtube {
    background: #ff0000;
}

.stream-preview-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
}

.stream-preview-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.stream-watch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
}

.stream-watch-btn:hover {
    background: linear-gradient(135deg, #e55a00, #ff6600);
}

.donate-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 28px;
    height: fit-content;
    position: sticky;
    top: 100px;
    width: 100%;
    max-width: 440px;
}

.donate-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.donate-box-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1d23;
    display: flex;
    align-items: center;
    gap: 8px;
}

.donate-box-header h2 i {
    color: var(--primary);
}

.donate-min {
    font-size: 12px;
    color: #888;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 6px;
}

.donate-form .form-group {
    margin-bottom: 18px;
}

.donate-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.donate-form input,
.donate-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.donate-form input:focus,
.donate-form textarea:focus {
    border-color: var(--primary);
}

.donate-amounts {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.donate-amount-btn {
    padding: 10px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.donate-amount-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.donate-amount-btn.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.donate-custom-amount {
    margin-top: 4px;
}

.btn-send-donate {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-send-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.donate-balance-info {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.donate-balance-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.donate-login-required {
    text-align: center;
    padding: 30px 0;
    color: #888;
}

.donate-login-required i {
    font-size: 36px;
    color: #ddd;
    display: block;
    margin-bottom: 12px;
}

.donate-login-required p {
    margin-bottom: 16px;
}

/* Streamer Stats */
.streamer-stats-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 24px;
    height: fit-content;
}

.streamer-stat {
    text-align: center;
}

.streamer-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.streamer-stat-label {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

/* ===== RESPONSIVE: STREAMERS ===== */
@media (max-width: 1024px) {
    .streamers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .streamers-page {
        padding-top: 80px;
    }

    .streamers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .streamers-title-row {
        flex-direction: column;
        align-items: stretch;
    }

    .streamers-search-box {
        max-width: 100%;
    }

    .streamer-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .streamer-profile-info h1 {
        justify-content: center;
    }

    .streamer-socials {
        justify-content: center;
    }

    .streamer-content,
    .streamer-content.has-stream {
        grid-template-columns: 1fr;
    }

    .application-form .form-row {
        grid-template-columns: 1fr;
    }

    .application-container {
        padding: 28px 20px;
    }

    .input-prefix {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .streamers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .streamer-card-avatar i {
        font-size: 28px;
    }

    .donate-amounts {
        flex-wrap: wrap;
    }

    .donate-amount-btn {
        flex: 1;
        min-width: 60px;
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .hamburger,
    .mobile-bottom-nav {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}
