/* AI Ethics Installation Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.ai-ethics-container {
    position: relative;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.hero-section {
    background: linear-gradient(45deg, #000, #1a1a1a);
    text-align: center;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

.subtitle {
    font-size: 1.5rem;
    color: #aaa;
}

.render-section {
    background-color: #0a0a0a;
}

.render-container {
    width: 80%;
    max-width: 1200px;
}

.main-render {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.ethics-section {
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.ethics-section h2 {
    font-size: 2.5rem;
    color: #0ff;
    margin-bottom: 1rem;
}

.ethics-section p {
    font-size: 1.2rem;
    max-width: 800px;
    line-height: 1.6;
}

.interactive-section {
    background-color: #0a0a0a;
}

.scenario-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.scenario-btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scenario-btn:hover {
    background-color: #0ff;
    color: #000;
}

.scenario-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #000;
}

/* Parallax effect */
.ethics-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#ethics1 { background-image: url('path/to/privacy-bg.jpg'); }
#ethics2 { background-image: url('path/to/bias-bg.jpg'); }
#ethics3 { background-image: url('path/to/job-bg.jpg'); }

/* Animation for sections */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.ethics-section, .interactive-section {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}