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

body {
    font-family: 'Play', sans-serif;
    color: #f8fafc;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Document Page Styles */
.document-page {
    min-height: 100vh;
    padding-top: var(--header-height, 80px);
    background: linear-gradient(135deg, #1a1c22 0%, #0f1115 100%);
}

.document-header {
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.document-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #d6940d;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(214, 148, 13, 0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.document-date {
    color: #8b909a;
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

.document-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 1;
}

.document-content {
    background: rgba(26, 28, 34, 0.6);
    border: 1px solid rgba(139, 144, 154, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 3rem;
}

.document-content h2 {
    font-size: 1.75rem;
    color: #d6940d;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.document-content h2:first-child {
    margin-top: 0;
}

.document-content h3 {
    font-size: 1.25rem;
    color: #f8fafc;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.document-content p {
    color: #c1c9d2;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.document-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.document-content li {
    color: #c1c9d2;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.document-content strong {
    color: #d6940d;
    font-weight: 600;
}

@media (max-width: 768px) {
    .document-title {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }

    .document-container {
        padding: 0 1rem 3rem;
    }

    .document-content {
        padding: 2rem 1.5rem;
    }

    .document-content h2 {
        font-size: 1.5rem;
    }

    .document-content h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .document-header {
        padding: 3rem 0 1.5rem;
    }
    
    .document-title {
        font-size: 1.5rem;
    }

    .document-content {
        padding: 1.5rem 1rem;
    }
}
