:root {
    --bg-color: #0e0f12;
    --card-color: #181a20;
    --accent-color: #fbbf24;
    --secondary-color: #60a5fa;
    --text-light: #ffffff;
    --text-muted: #9ca3af;
    --border-color: #2d303b;
    --max-width: 1150px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: var(--card-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--text-light);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn-accent {
    background-color: var(--accent-color);
    color: #000;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-accent:hover {
    background-color: #eab308;
}

.btn-primary {
    background-color: transparent;
    color: var(--accent-color);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: #000;
}

.w-100 {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(to bottom, rgba(14, 15, 18, 0.8), rgba(14, 15, 18, 0.95)), url('images/dark-noir-detective-office-city-night-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
}

.game-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--card-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 9;
}

.game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--card-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.about-text .section-title::after {
    margin: 10px 0 0 0;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Legal Disclaimer */
.legal-disclaimer-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-color);
}

.legal-disclaimer-section h2 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.legal-disclaimer-section > .container > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.legal-card {
    background-color: var(--card-color);
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.legal-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.legal-card p {
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--card-color);
    border-top: 1px solid var(--border-color);
}

.contact-inner {
    max-width: 600px;
    text-align: center;
}

.contact-inner p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-light);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer */
.site-footer {
    background-color: #000000;
    padding: 50px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand h3 {
    color: var(--text-light);
    margin-bottom: 5px;
}

.muted-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Simple Pages (Terms/Privacy) */
.page-header {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-content {
    padding: 60px 0;
    max-width: 800px;
}

.page-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text .section-title::after {
        margin: 10px auto 0;
    }
    
    .about-text {
        text-align: center;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
/* ENDFILE */
<!-- FILE: terms.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Terms of Service - aerovorexa.rest</title>
    <meta name="description" content="Terms of service and legal disclaimers for aerovorexa.rest.">
    <link rel="stylesheet" href="style.css">
</head>
<body>

    <header class="site-header">
        <div class="container header-inner">
            <div class="logo">
                <a href="index.html">aerovorexa</a>
            </div>
            <nav class="main-nav">
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="index.html#game-section">Game</a></li>
                    <li><a href="index.html#about-section">About</a></li>
                    <li><a href="index.html#contact-section">Contact</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <main>
        <section class="page-header">
            <div class="container">
                <h1>Terms of Service</h1>
                <p class="muted-text">Last Updated: January 2026</p>
            </div>
        </section>

        <section class="page-content container">
            <h2>1. Acceptance of Terms</h2>
            <p>By accessing and using aerovorexa.rest, you accept and agree to be bound by the terms and provisions of this agreement. Our website provides a free-to-play, entertainment-only slot-style game.</p>

            <h2>2. Entertainment Only</h2>
            <p>The "Detective Slot" game provided on this website is strictly for entertainment purposes. <strong>There are no payouts, no real value rewards, and no winnings of any kind.</strong> The game does not accept deposits and cannot be used for real-money wagering.</p>

            <h2>3. User Eligibility</h2>
            <p>While our game is free and simulates casino mechanics, it is intended for mature audiences who understand that the virtual credits have no real-world value.</p>

            <h2>4. Intellectual Property</h2>
            <p>All content, branding, and visual assets associated with aerovorexa and Detective Slot are the intellectual property of aerovorexa.rest unless otherwise stated.</p>

            <h2>5. Disclaimer of Liability</h2>
            <p>The materials on aerovorexa.rest are provided on an 'as is' basis. We make no warranties, expressed or implied, regarding the continuous availability of the game or website.</p>
        </section>
    </main>

    <footer class="site-footer">
        <div class="container footer-inner">
            <div class="footer-brand">
                <h3>aerovorexa</h3>
                <p class="muted-text">Entertainment only. No real value gameplay.</p>
            </div>
            <div class="footer-links">
                <a href="terms.html">Terms of Service</a>
                <a href="privacy.html">Privacy Policy</a>
            </div>
        </div>
        <div class="container footer-bottom">
            <p>&copy; 2026 aerovorexa.rest. All rights reserved. No payouts or rewards.</p>
        </div>
    </footer>

</body>
</html>