/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #4a5568 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Header */
.dev-badge {
    background: rgba(0, 184, 212, 0.2);
    border: 1px solid rgba(0, 184, 212, 0.5);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 30px;
}

/* Main Content */
h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff 0%, #00b8d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #00b8d4;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Toggle */
.toggle-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.toggle-option {
    padding: 12px 24px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-option.active {
    background: rgba(0, 184, 212, 0.3);
    border: 1px solid #00b8d4;
}

/* CTA Section */
.cta-section h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.donate {
    background: #4285f4;
    color: white;
}

.cta-button.coffee {
    background: #ff9800;
    color: white;
}

.cta-button.monthly {
    background: #9c27b0;
    color: white;
}

/* Footer */
.footer-text {
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}
