/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #0f0;
    font-family: 'Courier New', monospace;
    overflow-x: hidden;
    line-height: 1.6;
}

.app {
    position: relative;
    min-height: 100vh;
}

.content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

/* Common utility classes */
.matrix-title {
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
    font-weight: bold;
}

.matrix-text {
    color: #0f0;
    text-shadow: 0 0 5px #0f0;
}

.matrix-btn {
    background: transparent;
    border: 1px solid #0f0;
    color: #0f0;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px #0f0;
}

.matrix-btn:hover {
    background: #0f0;
    color: #000;
    text-shadow: none;
    box-shadow: 0 0 20px #0f0;
}

.section {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.8);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #0f0;
    font-size: 2.8rem;
    text-shadow: 0 0 10px #0f0;
}

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