@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

:root {
    --primary: #00ff88;
    --secondary: #0066ff;
    --accent: #ff0066;
    --dark: #0a0a0f;
    --glass: rgba(255, 255, 255, 0.1);
    --glow: 0 0 50px rgba(0, 255, 136, 0.5);
    --primary-dark: #00cc6a;
    --text-color: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 102, 0.2) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 40px 100px rgba(0, 255, 136, 0.1),
        0 0 0 1px rgba(0, 255, 136, 0.05);
}

.form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0.3;
}

.form-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    animation: shimmer 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.5)); }
}

.faq-section-title {
    color: var(--secondary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    padding: 15px 20px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-section-title:hover {
    background: rgba(0, 102, 255, 0.15);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.faq-subtitle {
    font-weight: 600;
    color: var(--primary);
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    padding-left: 15px;
    border-left: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.faq-subtitle:hover {
    padding-left: 20px;
    color: #fff;
    text-shadow: 0 0 10px var(--primary);
}

.faq-q {
    font-weight: 600;
    margin-top: 30px;
    color: var(--primary);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    padding: 10px 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.faq-q:hover {
    background: rgba(0, 255, 136, 0.15);
    transform: translateX(3px);
}

.faq-a {
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    z-index: 2;
    padding: 15px 0;
    line-height: 1.7;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.faq-a:hover {
    opacity: 1;
}

.faq-highlight {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    border-left: 4px solid var(--primary);
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px rgba(0, 255, 136, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 255, 136, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-left-color: #fff;
}

.faq-img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    margin: 25px auto;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.3);
}

.faq-list {
    margin: 0 0 25px 0;
    padding-left: 25px;
    position: relative;
    z-index: 2;
}

.faq-list li {
    margin-bottom: 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-radius: 5px;
    padding-left: 10px;
}

.faq-list li:hover {
    background: rgba(0, 255, 136, 0.05);
    padding-left: 15px;
    color: var(--primary);
}

.faq-link {
    color: var(--primary);
    text-decoration: underline;
    word-break: break-all;
    transition: all 0.3s ease;
    position: relative;
}

.faq-link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary);
    text-decoration: none;
}

.faq-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.faq-link:hover::after {
    width: 100%;
}

.donation-note {
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: italic;
    transition: all 0.3s ease;
}

.donation-note:hover {
    opacity: 1;
}

.btn {
    display: inline-block;
    padding: 16px 30px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 25px;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 
        0 10px 25px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 2;
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transition: all 0.4s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover::after {
    width: 200px;
    height: 200px;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 255, 136, 0.4),
        0 0 0 2px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn:active {
    transform: translateY(-3px) scale(1.02);
    transition: all 0.1s ease;
}

b, strong {
    color: var(--primary);
    font-weight: 600;
}

a[href^="mailto:"] {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a[href^="mailto:"]:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
}

@media (max-width: 768px) {
    .form-container {
        margin: 20px;
        padding: 40px 25px;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-section-title {
        font-size: 1.2rem;
        margin-top: 30px;
        padding: 12px 15px;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-top: 20px;
    }

    .faq-highlight {
        padding: 20px;
        margin: 25px 0;
        font-size: 1rem;
    }

    .btn {
        padding: 14px 25px;
        font-size: 0.9rem;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .form-container {
        margin: 15px;
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .faq-section-title {
        font-size: 1.1rem;
        padding: 10px 12px;
    }

    .faq-list {
        padding-left: 20px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
}