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

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #1a1a1a;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}

.signup-btn {
    background: #d4af37;
    color: #1a1a1a !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.signup-btn:hover {
    background: #b8941f;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero-background {
    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 1000 1000"><polygon fill="%23d4af37" opacity="0.1" points="0,0 1000,300 1000,1000 0,700"/></svg>') no-repeat center center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    background: #d4af37;
    color: #1a1a1a;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.alt-bg {
    background: #252525;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h2 {
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.8rem;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 2rem;
}

h4 {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Quote Section */
.quote-section {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #d4af37;
}

.quote-section p {
    font-style: italic;
    font-size: 1.2rem;
}

/* Community Comparison */
.community-comparison {
    margin: 3rem 0;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin: 1rem 0;
}

/* Founder Section */
.founder-section {
    text-align: center;
    margin: 3rem 0;
}

.dream-quote {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
}

.benefit-item h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Video Section */
.video-section {
    margin-top: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-item {
    text-align: center;
}

.video-item iframe {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.video-item p {
    color: #d4af37;
    font-weight: bold;
}

/* Game Plan Steps */
.gameplan-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.step-number {
    background: #d4af37;
    color: #1a1a1a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.gameplan-conclusion {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.gameplan-conclusion h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Services List */
.services-list {
    list-style: none;
    margin-top: 2rem;
}

.services-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    margin: 1rem 0;
    border-radius: 5px;
    border-left: 4px solid #d4af37;
    font-size: 1.1rem;
}

/* Contact Section Text */
.section .container h2 + p {
    text-align: center;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

/* Center the contact instruction text */
.contact-form {
    text-align: center;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    text-align: left;
}

/* Center the contact instruction text */
.contact-form + p {
    text-align: center;
}

.contact-form + p {
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form button {
    background: #d4af37;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #b8941f;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer a {
    color: #d4af37;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.reading-suggestions {
    margin-top: 2rem;
}

.reading-suggestions h3 {
    color: #d4af37;
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 1rem;
}

.reading-suggestions ul {
    list-style: none;
    padding-left: 0;
}

.reading-suggestions li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.reading-suggestions li::before {
    content: "→";
    color: #d4af37;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}
