:root {
    /* Color Palette */
    --bg-dark: #0a0a0f;
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;
    
    --primary-color: #ff3366;
    --primary-hover: #ff4d79;
    --secondary-color: #1da1f2; /* X/Twitter blue style */
    --secondary-hover: #40aef5;
    --accent-color: #00ff88; /* Alien green */
    --accent-hover: #33ff9f;

    --gradient-1: #ff3366;
    --gradient-2: #ff9933;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Animations */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 10vh) scale(1.2); }
}

/* Header */
.header {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.9), transparent);
}

.banner-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.top-banner {
    max-width: 100%;
    height: auto;
    max-height: 300px; /* Adjust as needed */
    object-fit: contain;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.top-banner:hover {
    transform: scale(1.02);
}

/* Main Container */
.container {
    flex: 1;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    z-index: 1;
}

/* Glass Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
}

/* Typography */
.hero-section {
    text-align: center;
}

.gradient-text {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    animation: hueShift 10s infinite alternate;
}

@keyframes hueShift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(30deg); }
}

.subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.text-content {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
}

.description {
    margin-bottom: 1rem;
}

.description strong {
    color: var(--text-main);
}

.main-image {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
}
.main-image:hover {
    transform: scale(1.05) rotate(1deg);
}

/* Buttons */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn-icon {
    margin-right: 10px;
    font-size: 1.3rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--gradient-2));
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}
.btn-secondary:hover {
    background: var(--secondary-hover);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.6);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}
.btn-accent:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

/* Charity Section */
.charity-section.highlight {
    border: 1px solid rgba(255, 51, 102, 0.3);
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255, 51, 102, 0.05) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.charity-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

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

.charity-title {
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.charity-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

.charity-text strong {
    color: var(--primary-color);
}

.highlight-text {
    font-size: 1.4rem;
    color: var(--text-main);
    font-weight: 600;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
    .gradient-text { font-size: 2.8rem; }
    .subtitle { font-size: 1.5rem; }
    .glass-panel { padding: 2rem 1.5rem; }
    .action-buttons { flex-direction: column; }
    .btn { width: 100%; }
    .charity-title { font-size: 1.8rem; }
}
