/* Support Page Specific Styles - Scoped to avoid conflicts */
.support-page-wrapper {
    background: linear-gradient(135deg, #F5F5DC 0%, #fff9ed 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.support-container-enhanced {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.support-hero-section {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.3);
}

.support-hero-decoration {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(210, 65, 21, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.support-hero-content {
    position: relative;
    z-index: 2;
}

.support-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(210, 65, 21, 0.2);
    color: #D24115;
    border: 2px solid #D24115;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.support-hero-title {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.support-hero-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Content Sections */
.support-enables-section,
.support-contribution-section,
.support-clarification-section,
.support-transparency-section,
.support-specific-section,
.support-closing-section {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-enables-section:hover,
.support-contribution-section:hover,
.support-transparency-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.support-section-title {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.support-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D24115, transparent);
    border-radius: 2px;
}

.support-section-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495E;
    margin-bottom: 2rem;
}

/* Support List Grid */
.support-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.support-list-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(210, 65, 21, 0.03) 0%, rgba(210, 65, 21, 0.08) 100%);
    border-radius: 12px;
    border-left: 4px solid #D24115;
    transition: all 0.3s ease;
}

.support-list-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(210, 65, 21, 0.15);
}

.support-list-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.support-list-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.support-list-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contribution Form */
.support-form-header {
    margin-bottom: 2.5rem;
}

.support-contribution-form {
    margin-top: 2rem;
}

.support-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.support-label-icon {
    font-size: 1.5rem;
}

.support-amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.support-amount-btn {
    position: relative;
    padding: 1.5rem;
    border: 3px solid #e0e0e0;
    background: white;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C3E50;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.support-amount-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(210, 65, 21, 0.1), transparent);
    transition: left 0.5s ease;
}

.support-amount-btn:hover::before {
    left: 100%;
}

.support-amount-btn:hover {
    border-color: #D24115;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(210, 65, 21, 0.2);
}

.support-amount-btn.active {
    border-color: #D24115;
    background: linear-gradient(135deg, #D24115 0%, #e85428 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(210, 65, 21, 0.4);
}

.support-amount-value {
    position: relative;
    z-index: 2;
}

/* Custom Amount */
.support-custom-amount {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(44, 62, 80, 0.06) 100%);
    border-radius: 12px;
    border: 2px dashed rgba(44, 62, 80, 0.2);
}

.support-custom-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2C3E50;
    font-size: 1.05rem;
}

.support-input-group {
    display: flex;
    align-items: stretch;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.support-currency-symbol {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-custom-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 3px solid #e0e0e0;
    border-left: none;
    font-size: 1.1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.support-custom-input:focus {
    outline: none;
    border-color: #D24115;
}

/* Contributor Details */
.support-contributor-details {
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.02) 0%, rgba(44, 62, 80, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.support-details-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    color: #2C3E50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.support-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.support-form-group {
    display: flex;
    flex-direction: column;
}

.support-form-group label {
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.support-form-input,
.support-form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.support-form-input:focus,
.support-form-textarea:focus {
    outline: none;
    border-color: #D24115;
    box-shadow: 0 0 0 4px rgba(210, 65, 21, 0.1);
}

.support-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.support-form-hint {
    margin-top: 0.5rem;
    color: #6c757d;
    font-size: 0.85rem;
    font-style: italic;
}

/* Contribution Action */
.support-contribution-action {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(44, 62, 80, 0.1);
}

.support-btn {
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.support-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.support-btn:hover::before {
    width: 300px;
    height: 300px;
}

.support-btn-primary {
    background: linear-gradient(135deg, #D24115 0%, #e85428 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(210, 65, 21, 0.3);
    position: relative;
}

.support-btn-primary:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(210, 65, 21, 0.4);
}

.support-btn-primary:active:not(:disabled) {
    transform: translateY(-2px);
}

.support-btn-primary:disabled {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
}

.support-btn-text,
.support-btn-icon {
    position: relative;
    z-index: 2;
}

.support-btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.support-btn:hover:not(:disabled) .support-btn-icon {
    transform: translateX(5px);
}

.support-btn-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.3rem;
    min-width: 350px;
}

.support-security-notice {
    margin-top: 1.5rem;
    color: #6c757d;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.support-security-icon {
    font-size: 1.2rem;
}

/* Important Notice */
.support-clarification-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a8 100%);
    border: 3px solid #ffc107;
    position: relative;
    overflow: hidden;
}

.support-clarification-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.support-important-notice {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.support-notice-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.support-notice-title {
    color: #856404;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.support-notice-content p {
    color: #856404;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.support-notice-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.support-notice-list li {
    color: #856404;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0.5rem;
}

.support-notice-list li::marker {
    color: #ffc107;
    font-weight: bold;
}

.support-notice-content strong {
    font-weight: 700;
    color: #664d03;
}

/* Transparency Section */
.support-transparency-section {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
    border-left: 6px solid #28a745;
}

.support-transparency-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.support-transparency-icon {
    font-size: 4rem;
    color: #28a745;
    flex-shrink: 0;
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.support-transparency-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #2C3E50;
}

/* Specific Support Section */
.support-specific-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(44, 62, 80, 0.08) 100%);
}

.support-specific-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495E;
    margin-bottom: 1.5rem;
}

.support-contact-email {
    margin-top: 2rem;
}

.support-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #D24115;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 2rem;
    background: white;
    border-radius: 50px;
    border: 3px solid #D24115;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 65, 21, 0.2);
}

.support-email-link:hover {
    background: #D24115;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 65, 21, 0.3);
}

.support-email-icon {
    font-size: 1.6rem;
}

/* Closing Section */
.support-closing-section {
    text-align: center;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 4rem 3rem;
}

.support-closing-decoration {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(210, 65, 21, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.support-closing-text {
    font-size: 1.3rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.support-closing-signature {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #D24115;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-page-wrapper {
        padding: 1rem 0;
    }
    
    .support-container-enhanced {
        padding: 0 1rem;
    }
    
    .support-hero-section {
        padding: 3rem 1.5rem;
        border-radius: 16px;
    }
    
    .support-hero-title {
        font-size: 2.2rem;
    }
    
    .support-hero-text {
        font-size: 1rem;
    }
    
    .support-enables-section,
    .support-contribution-section,
    .support-clarification-section,
    .support-transparency-section,
    .support-specific-section,
    .support-closing-section {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .support-section-title {
        font-size: 1.6rem;
    }
    
    .support-list-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-list-item {
        padding: 1.25rem;
    }
    
    .support-list-icon {
        font-size: 2rem;
    }
    
    .support-amount-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .support-amount-btn {
        padding: 1.25rem 1rem;
        font-size: 1.3rem;
    }
    
    .support-custom-amount {
        padding: 1.5rem;
    }
    
    .support-contributor-details {
        padding: 1.5rem;
    }
    
    .support-details-title {
        font-size: 1.3rem;
    }
    
    .support-form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-btn-large {
        min-width: 100%;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    .support-important-notice {
        flex-direction: column;
        gap: 1rem;
    }
    
    .support-notice-icon {
        font-size: 2.5rem;
    }
    
    .support-notice-title {
        font-size: 1.5rem;
    }
    
    .support-transparency-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .support-transparency-icon {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }
    
    .support-email-link {
        font-size: 1.1rem;
        padding: 0.875rem 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .support-closing-section {
        padding: 3rem 1.5rem;
    }
    
    .support-closing-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .support-hero-title {
        font-size: 1.8rem;
    }
    
    .support-hero-text {
        font-size: 0.95rem;
    }
    
    .support-section-title {
        font-size: 1.4rem;
    }
    
    .support-amount-buttons {
        grid-template-columns: 1fr;
    }
    
    .support-amount-btn {
        padding: 1.5rem 1rem;
    }
    
    .support-btn-large {
        font-size: 1rem;
        padding: 1.125rem 1.5rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-hero-section,
.support-enables-section,
.support-contribution-section,
.support-clarification-section,
.support-transparency-section,
.support-specific-section,
.support-closing-section {
    animation: fadeInUp 0.6s ease-out forwards;
}

.support-enables-section {
    animation-delay: 0.1s;
}

.support-contribution-section {
    animation-delay: 0.2s;
}

.support-clarification-section {
    animation-delay: 0.3s;
}

.support-transparency-section {
    animation-delay: 0.4s;
}

.support-specific-section {
    animation-delay: 0.5s;
}

.support-closing-section {
    animation-delay: 0.6s;
}

/* Print styles */
@media print {
    .support-page-wrapper {
        background: white;
    }
    
    .support-hero-section,
    .support-enables-section,
    .support-contribution-section,
    .support-clarification-section,
    .support-transparency-section,
    .support-specific-section,
    .support-closing-section {
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    .support-btn,
    .support-contribution-form {
        display: none;
    }
}