* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background: #000000;
    min-height: 100vh;
}

/* Animated Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    z-index: -1;
}

.background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Navigation */
nav {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links a {
    color: #DAA520;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-links a:hover {
    color: #FFD700;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.subtitle {
    font-size: 20px;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 60px;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(218, 165, 32, 0.15);
    border: 1px solid rgba(218, 165, 32, 0.35);
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(218, 165, 32, 0.4);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-weight: 700;
    color: #FFD700;
}

.feature-card p {
    font-size: 14px;
    color: #ddd;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: #bbb;
    font-weight: 600;
}

/* Form Section */
.form-section {
    background: rgba(30, 30, 30, 0.8);
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto 80px;
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.3);
}

.form-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: #FFD700;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f0e68c;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    background: #222;
    color: #eee;
    font-size: 14px;
    resize: vertical;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
    color: #999;
}

textarea {
    min-height: 100px;
}

.optional {
    font-weight: 400;
    font-style: italic;
    color: #999;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    border: none;
    padding: 15px 0;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    color: #111;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    box-shadow: 0 0 12px #ffd700cc;
}

/* Confirmation & Error Messages */
.confirmation,
.error-message {
    display: none;
    background: rgba(34, 139, 34, 0.8);
    color: #dff0d8;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.error-message {
    background: rgba(178, 34, 34, 0.8);
}

/* Footer */
footer {
    background: #111;
    color: #aaa;
    padding: 40px 20px;
    font-size: 14px;
    text-align: center;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 10px;
}

.contact-info a {
    color: #DAA520;
    text-decoration: none;
}

.social-links a {
    margin: 0 10px;
    color: #DAA520;
    text-decoration: none;
    font-weight: 700;
}

.social-links a:hover {
    color: #FFD700;
}

.disclaimer {
    margin-top: 25px;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #444;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 90%;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 500px) {
    nav {
        padding: 10px 0;
    }
    
    .nav-links a {
        margin-left: 15px;
        font-size: 12px;
    }

    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }
}
