/* StreamDonate Public Support Page Stylesheet */

.support-wrapper {
    background-color: #08090a;
    min-height: 100vh;
    padding-bottom: 60px;
}
.streamer-profile-banner {
    display: block;
    height: 180px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--border-color);
}

.streamer-avatar-container {
    margin-top: 30px;
    position: relative;
    z-index: 20;
    text-align: center;
}

.streamer-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #08090a;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Donation Form Styling */
.donation-card {
    max-width: 650px;
    margin: 0 auto;
}

.amount-input-group {
    position: relative;
}

.amount-input-group .currency-label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
}

.amount-input-group input {
    padding-right: 70px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.02);
}

.amount-input-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
    background-color: rgba(255, 255, 255, 0.04);
}

/* Presets Amount Buttons */
.preset-btn {
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.preset-btn:hover, .preset-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Payment Gateway Selector */
.gateway-card {
    border: 2px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.01);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.gateway-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.03);
}

.gateway-radio {
    display: none;
}

.gateway-radio:checked + .gateway-card {
    border-color: var(--secondary-color);
    background-color: rgba(0, 242, 254, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.gateway-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.gateway-radio:checked + .gateway-card .gateway-icon {
    color: var(--secondary-color);
}

/* Animated Payment Success Screen */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}

.check-icon::after {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.check-icon::before {
    top: 0;
    left: 30px;
    width: 30px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
}

.check-icon::after, .check-icon::before {
    content: '';
    height: 75px;
    position: absolute;
    background: transparent;
    transform: rotate(-45deg);
}

.icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
}

.icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
}

.icon-circle {
    top: -4px;
    left: -4px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(76, 175, 80, .5);
    box-sizing: content-box;
    position: absolute;
    z-index: 1;
}

.icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    height: 85px;
    position: absolute;
    z-index: 1;
    background: transparent;
    transform: rotate(-45deg);
}
