/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    /*box-sizing: border-box;*/
}

body {
    font-family: 'Raleway', Arial, sans-serif;
    background: #333;
    color: #f9f1e9;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 40px;
    border-bottom: 3px solid #A12926;
}

.header h1 {
    color: #f9f1e9 !important;
    font-weight: 200;
    font-size: 28px;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.header a {
    color: #EA952F !important;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s;
}

.header a:hover {
    color: #fff !important;
}

/* Container */
.container {
    /* max-width: 900px; */
    /* margin: 40px auto; */
    background: rgba(0, 0, 0, 0.85);
    padding: 60px;
    /*box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);*/
    border: 1px solid rgba(161, 41, 38, 0.3);
}

/* Typography */
h1 {
    color: #f9f1e9 !important;
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.last-updated {
    color: #999 !important;
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

h2 {
    color: #EA952F !important;
    font-size: 24px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid #A12926;
    padding-bottom: 10px;
}

h3 {
    color: #f9f1e9 !important;
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    color: #ddd;
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
    color: #ddd;
}

strong {
    color: #EA952F !important;
    font-weight: 600;
}

/* Notice Boxes */
.important-notice {
    background: rgba(234, 149, 47, 0.15) !important;
    border-left: 4px solid #EA952F;
    padding: 20px;
    margin: 30px 0;
}

.warning-box {
    background: rgba(161, 41, 38, 0.2) !important;
    border-left: 4px solid #A12926;
    padding: 20px;
    margin: 30px 0;
}

.info-notice {
    background: rgba(255, 255, 255, 0.05) !important;
    border-left: 4px solid #666;
    padding: 20px;
    margin: 30px 0;
}

/* Contact Section */
.contact-info {
    background: #A12926 !important;
    color: #f9f1e9 !important;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
    color: #f9f1e9 !important;
    margin-bottom: 15px;
}

.contact-info p {
    color: #f9f1e9 !important;
}

.contact-info a {
    color: #EA952F !important;
    text-decoration: none;
}

.contact-info a:hover {
    color: #fff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .container {
        padding: 30px 20px;
        margin: 20px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }
}

.legal-footer {
   background: rgba(0, 0, 0, 0.85);
   color: #ccc;
   padding: 40px 20px 20px;
   font-family: 'Raleway', Arial, sans-serif;
   font-size: 12px;
   line-height: 1.6;
   margin-top: 0;
}

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

.disclosure-section {
   margin-bottom: 30px;
}

.disclosure-section h3 {
   color: #fff;
   font-size: 16px;
   font-weight: 400;
   margin-bottom: 20px;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.disclosure-section p {
   margin-bottom: 15px;
   text-align: justify;
}

.disclosure-section strong {
   color: #fff;
   font-weight: 600;
}

.footer-links {
   text-align: center;
   padding-top: 20px;
   border-top: 1px solid #444;
}

.footer-links p {
   margin: 10px 0;
}

.footer-links a {
   color: #9db4c0;
   text-decoration: none;
   margin: 0 10px;
   transition: color 0.3s ease;
}

.footer-links a:hover {
   color: #fff;
}

#demo-canvas {
    pointer-events: none;
}