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

body {
    font-family: 'Share Tech Mono', 'Courier New', 'Monaco', 'Lucida Console', monospace;
    line-height: 1.6;
    color: #00FF00;
    background: #0a0a0a;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 1px 1px, #333 1px, transparent 0);
    background-size: 20px 20px;
}

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

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    padding: 2rem 0;
    border-bottom: 2px solid #FF6B35;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    text-align: center;
}

.logo-section {
    text-align: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.logo-svg {
    display: inline-block;
}

.logo-svg svg {
    vertical-align: middle;
    filter: drop-shadow(0 0 10px #FF6B35);
}

.logo h1 {
    color: #00FF00;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px #00FF00;
    font-family: 'Orbitron', monospace;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column; /* Changed from default row */
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    gap: 2rem; /* Add gap between sections */
}

.welcome-section {
    text-align: center;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border: 2px solid #FF6B35;
    border-radius: 8px;
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.3),
        inset 0 0 20px rgba(0, 255, 0, 0.1);
}

.welcome-section h2 {
    font-size: 2.5rem;
    color: #FF6B35;
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 15px #FF6B35;
    letter-spacing: 0.05em;
}

.tagline {
    font-size: 1.5rem;
    color: #00FF00;
    font-family: 'Share Tech Mono', monospace;
    text-shadow: 0 0 10px #00FF00;
    letter-spacing: 0.02em;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
}

.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer p {
    color: #666;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
}

.footer-tagline {
    font-style: italic;
    margin-top: 0.5rem;
    color: #888;
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.8rem;
    }

    .welcome-section {
        padding: 2rem;
        margin: 0 1rem;
    }

    .welcome-section h2 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1.2rem;
    }
}

/* Terminal cursor effect */
.tagline::after {
    content: '_';
    animation: cursor 1s infinite;
    color: #00FF00;
}

@keyframes cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Add this to your existing styles.css file */

.embedded-section {
    text-align: center;
    max-width: 800px;
    /* Remove margin: 2rem auto 0; since flex handles centering */
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border: 2px solid #FF6B35;
    border-radius: 8px;
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.3),
        inset 0 0 20px rgba(0, 255, 0, 0.1);
}

.embedded-section h3 {
    color: #FF6B35;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px #FF6B35;
    text-align: center;
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 750px;
    border: 1px solid #4A5568;
    border-radius: 4px;
    overflow: hidden;
    background: #0a0a0a;
}

.iframe-container iframe {
    width: 500px;
    height: 700px;
    border: none;
    background: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-content {
        padding: 2rem 0; /* Reduce padding on mobile */
        gap: 1.5rem; /* Smaller gap on mobile */
    }
    
    .embedded-section {
        padding: 1rem;
        /* Remove margin since flex handles positioning */
    }
    
    .embedded-section h3 {
        font-size: 1.4rem;
    }
    
    .iframe-container {
        height: 500px;
    }
}