/* Base styles */
body {
    background: #181818;
    color: #e0e0e0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Container for uniform margins and padding */
.container, .privacy-policy {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
    background: #232323;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Headings */
h1, h2, h3 {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.7em;
    line-height: 1.2;
}

h1 {
    color: #ffb300;
    font-size: 2.2em;
    border-bottom: 2px solid #333;
    padding-bottom: 0.4em;
}

h2 {
    color: #ffd54f;
    font-size: 1.5em;
    border-bottom: 1px solid #444;
    padding-bottom: 0.2em;
}

h3 {
    color: #ffe082;
    font-size: 1.2em;
}

/* Paragraphs */
p {
    color: #e0e0e0;
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 1em;
    text-indent: 1.5em;
}

/* Lists */
ul, ol {
    margin: 1em 0 1em 2em;
    color: #e0e0e0;
    font-size: 1em;
}

li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

/* Links */
a {
    color: #64b5f6;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #1976d2;
    text-decoration: underline;
}

/* Emphasis */
strong, b {
    color: #fff;
    font-weight: bold;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #333;
    padding-left: 1em;
    color: #bdbdbd;
    font-style: italic;
    margin: 1em 0;
    background: #222;
}

/* Last updated note */
.last-updated {
    color: #bdbdbd;
    font-size: 0.95em;
    font-style: italic;
    margin-bottom: 1.5em;
}

/* DMCA specific */
#dmca h2 {
    color: #ff5252;
    border-bottom: 1px solid #333;
    padding-bottom: 0.3em;
}

/* Privacy Policy specific */
.privacy-policy h2 {
    background-color: #222;
    padding: 0.5em;
    border-radius: 4px;
}

/* Terms specific */
#terms-of-service ol {
    counter-reset: item;
    list-style-type: decimal;
}

/* Statement specific */
#usc-stat {
    background-color: #232323;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    h1 { font-size: 2em; }
    h2 { font-size: 1.5em; }
    h3 { font-size: 1.2em; }
}

/* Responsive for mobile */
@media (max-width: 600px) {
    .container, .privacy-policy {
        padding: 12px;
    }
    h1 { font-size: 1.5em; }
    h2 { font-size: 1.2em; }
    h3 { font-size: 1em; }
    p, ul, ol { font-size: 0.97em; }
}