@import url('../typography-responsive.css');

:root {
            --yellow: #ffbd59;
            --red: #ff3131;
            --white: #fffef8;
            --black: #080517;
            --font-display: 'Archivo Black', sans-serif;
            --font-body: 'Archivo', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            background-color: var(--black);
            color: var(--white);
            line-height: 1.8;
        }
        
        .header {
            background: linear-gradient(135deg, #080517 0%, #1a0f35 100%);
            border-bottom: 4px solid var(--yellow);
            padding: 3rem 0;
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .header h1 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            color: var(--yellow);
            margin-bottom: 0.5rem;
        }
        
        .header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        
        .toc {
            background-color: rgba(255, 189, 89, 0.1);
            border-left: 4px solid var(--yellow);
            padding: 2rem;
            margin-bottom: 4rem;
            border-radius: 4px;
        }
        
        .toc h2 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: var(--yellow);
        }
        
        .toc ul {
            list-style: none;
        }
        
        .toc li {
            margin: 0.5rem 0;
        }
        
        .toc a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .toc a:hover {
            color: var(--yellow);
            text-decoration: underline;
        }
        
        section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        section:last-child {
            border-bottom: none;
        }
        
        h2 {
            font-family: var(--font-display);
            font-size: 1.75rem;
            color: var(--red);
            margin-bottom: 1.5rem;
            margin-top: 0;
        }
        
        h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            color: var(--yellow);
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }
        
        p {
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        strong {
            color: var(--yellow);
        }
        
        a {
            color: var(--yellow);
            text-decoration: underline;
        }
        
        a:hover {
            color: var(--white);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background-color: rgba(255, 189, 89, 0.05);
        }
        
        table th,
        table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 189, 89, 0.2);
        }
        
        table th {
            background-color: rgba(255, 189, 89, 0.1);
            color: var(--yellow);
            font-weight: 600;
        }
        
        .highlight {
            background-color: rgba(255, 49, 49, 0.1);
            padding: 1.5rem;
            border-left: 4px solid var(--red);
            margin: 1.5rem 0;
            border-radius: 4px;
        }
        
        .footer {
            background-color: rgba(0, 0, 0, 0.5);
            border-top: 4px solid var(--yellow);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .footer-links {
            margin-bottom: 1.5rem;
        }
        
        .footer-links a {
            display: inline-block;
            margin: 0 1rem;
            text-decoration: none;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: var(--yellow);
            color: var(--black);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s;
            z-index: 999;
            text-decoration: none;
            font-weight: bold;
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        .back-to-top:hover {
            background-color: var(--red);
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.75rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            h3 {
                font-size: 1.1rem;
            }
            
            .container {
                padding: 2rem 1.5rem;
            }
        }
