/*
Copyright 2025 Dkmariolink (thedkmariolink@gmail.com)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header styles */
header {
    background: linear-gradient(135deg, #9146FF 0%, #772CE8 100%);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(145, 70, 255, 0.3);
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    margin-right: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Hero section */
.hero {
    display: flex;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    padding-right: 3rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-5px);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #9146FF 0%, #772CE8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(145, 70, 255, 0.4);
}

.cta-button.secondary {
    background: white;
    color: #9146FF;
    border: 2px solid #9146FF;
}

.cta-button.secondary:hover {
    background: #9146FF;
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #9146FF;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Sections */
.features, .use-cases, .supported-apps, .getting-started, .cta-section {
    padding: 5rem 2rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2d2d2d;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features section */
.features {
    background: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature h3 {
    color: #9146FF;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Use cases section */
.use-cases {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.use-case:hover {
    transform: translateY(-3px);
}

.use-case h3 {
    color: #9146FF;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Supported apps section */
.supported-apps {
    background: white;
}

.app-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.app-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #9146FF;
}

.app-category h4 {
    color: #9146FF;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.app-list {
    color: #666;
    line-height: 1.5;
}

.app-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f0f8ff;
    border-radius: 8px;
    color: #0066cc;
    font-weight: 500;
}

/* Getting started section */
.getting-started {
    background: linear-gradient(135deg, #9146FF 0%, #772CE8 100%);
    color: white;
}

.getting-started h2 {
    color: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    color: #9146FF;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA section */
.cta-section {
    background: white;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: #2d2d2d;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #9146FF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #9146FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #aaa;
}

/* Download page specific - MODERN VERSION */
.download-hero {
    background: linear-gradient(135deg, #9146FF 0%, #772CE8 100%);
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><ellipse fill="url(%23a)" cx="50" cy="0" rx="50" ry="20"/></svg>') no-repeat center top;
    opacity: 0.3;
}

.download-hero-content {
    position: relative;
    z-index: 2;
}

.download-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.download-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.version-label {
    font-weight: 500;
}

.version-number {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.version-platform {
    background: linear-gradient(135deg, #00D4FF, #5A67D8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.download-main {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.download-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(145, 70, 255, 0.1);
}

.download-card.featured {
    background: linear-gradient(135deg, #9146FF 0%, #772CE8 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(145, 70, 255, 0.3);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.download-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.download-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.download-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.download-card.featured h3 {
    color: white;
}

.download-button-modern {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    margin: 2rem 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

.download-button-modern:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.download-text {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.download-size {
    font-size: 0.9rem;
    opacity: 0.8;
}

.compatibility-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.quick-start-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quick-start-card h3 {
    color: #9146FF;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.quick-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.quick-step .step-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quick-step .step-content strong {
    color: #9146FF;
    display: block;
    margin-bottom: 0.25rem;
}

.quick-step .step-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.download-details {
    padding: 4rem 2rem;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border-left: 4px solid #9146FF;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-3px);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.detail-card h3 {
    color: #9146FF;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.security-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.security-feature strong {
    color: #9146FF;
    display: block;
    margin-bottom: 0.25rem;
}

.security-feature p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.smartscreen-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #856404;
}

.download-alternatives {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.download-alternatives h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2d2d2d;
}

.alternatives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.alternative-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.alternative-card:hover {
    transform: translateY(-3px);
}

.alt-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.alternative-card h3 {
    color: #9146FF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.alternative-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.dev-links, .release-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dev-link, .release-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #9146FF 0%, #772CE8 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dev-link:hover, .release-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.3);
}

.download-next-steps {
    padding: 4rem 2rem;
    background: white;
}

.download-next-steps h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.next-steps-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.next-step-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.next-step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.next-step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.next-step-item h4 {
    color: #9146FF;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.next-step-item p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.next-step-item a {
    color: #9146FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.next-step-item a:hover {
    color: #772CE8;
    text-decoration: underline;
}

/* Mobile responsiveness for download page */
@media (max-width: 768px) {
    .download-hero h1 {
        font-size: 2.5rem;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-card.featured {
        order: -1;
        transform: none;
    }
    
    .details-grid, .alternatives-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .next-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .version-badge {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .download-hero {
        padding: 4rem 1rem 3rem;
    }
    
    .download-main, .download-details, .download-alternatives, .download-next-steps {
        padding: 3rem 1rem;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cta-button {
        min-width: auto;
        flex: 1;
        max-width: 200px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    nav a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .features, .use-cases, .supported-apps, .getting-started, .cta-section {
        padding: 3rem 1rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .steps {
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .feature-grid, .use-case-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Support Page Styles */
.support-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a3a 100%);
    min-height: 80vh;
}

.support-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.support-card {
    background: rgba(139, 69, 19, 0.1);
    border: 2px solid rgba(139, 69, 19, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card.primary {
    background: rgba(255, 94, 77, 0.1);
    border-color: rgba(255, 94, 77, 0.4);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-card p {
    color: #b8b8b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.coffee-button {
    background: linear-gradient(135deg, #FF5E4D, #FF8A65);
    color: white;
}

.coffee-button:hover {
    background: linear-gradient(135deg, #FF3D2A, #FF7043);
    transform: translateY(-2px);
}

.star-button {
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: #333;
}

.star-button:hover {
    background: linear-gradient(135deg, #FFEB3B, #FF8F00);
    transform: translateY(-2px);
}

.support-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem !important;
    font-style: italic;
}

.free-commitment {
    background: rgba(30, 30, 30, 0.8);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.free-commitment h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #fff;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.commitment-item {
    text-align: center;
    padding: 1.5rem;
}

.commitment-item h4 {
    color: #8B45FF;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.commitment-item p {
    color: #b8b8b8;
    line-height: 1.6;
}

.other-support {
    margin-bottom: 3rem;
}

.other-support h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #fff;
}

.other-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.other-support-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.other-support-item:hover {
    background: rgba(30, 30, 30, 0.8);
    transform: translateY(-3px);
}

.other-support-item .support-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.other-support-item h4 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.other-support-item p {
    color: #b8b8b8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.other-support-item a {
    color: #8B45FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.other-support-item a:hover {
    color: #A855F7;
    text-decoration: underline;
}

.transparency {
    background: rgba(30, 30, 30, 0.8);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.transparency h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.transparency p {
    color: #b8b8b8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.transparency-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.transparency-list li {
    color: #b8b8b8;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.transparency-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B45FF;
    font-weight: bold;
    font-size: 1.2rem;
}

.transparency-list strong {
    color: #fff;
}

.appreciation {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 69, 255, 0.1);
    border-radius: 16px;
    border: 2px solid rgba(139, 69, 255, 0.2);
}

.appreciation h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.appreciation p {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.appreciation-note {
    font-style: italic;
    color: #8B45FF !important;
    font-size: 1rem !important;
}

/* Mobile responsiveness for support page */
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-card {
        padding: 2rem;
    }
    
    .commitment-grid, .other-support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .free-commitment, .transparency {
        padding: 2rem 1rem;
    }
}
