@font-face {
    font-family: 'PropagandaSerif';
    src: url('../assets/fonts/propaganda-serif.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RegimeSans';
    src: url('../assets/fonts/regime-sans.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    --blood-red: #8B0000;
    --dark-brown: #2A1A0A;
    --medium-brown: #3B2A1A;
    --bronze: #CD7F32;
    --light-bronze: #D4A064;
    --parchment: #F2E8C0;
    --dark-overlay: rgba(20, 10, 5, 0.85);
    --torch-glow: 0 0 20px rgba(255, 165, 0, 0.6);
}

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

body {
    font-family: 'RegimeSans', Helvetica, Arial, sans-serif;
    color: #F2E8C0;
    background-color: var(--dark-brown);
    background-image: url('../assets/img/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'PropagandaSerif', Georgia, 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/texture-overlay.png');
    background-size: cover;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1000;
}

.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--dark-brown);
    border: 2px solid var(--bronze);
    color: var(--bronze);
    padding: 10px 15px;
    z-index: 1100;
    display: flex;
    align-items: center;
    font-family: 'PropagandaSerif', serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: var(--bronze);
    color: var(--dark-brown);
}

.menu-toggle .fa-bars {
    margin-right: 10px;
}

.secret-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--medium-brown);
    border-left: 3px solid var(--bronze);
    z-index: 1200;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.secret-menu.open {
    right: 0;
}

.menu-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bronze);
}

.classified-stamp {
    font-family: 'PropagandaSerif', serif;
    color: var(--blood-red);
    border: 2px solid var(--blood-red);
    padding: 5px 10px;
    transform: rotate(-5deg);
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
}

.close-menu {
    background: none;
    border: none;
    color: var(--bronze);
    font-size: 20px;
    cursor: pointer;
}

.menu-links {
    list-style-type: none;
    padding: 0;
    flex-grow: 1;
}

.menu-links li {
    margin-bottom: 15px;
    position: relative;
}

.menu-links li a {
    color: var(--parchment);
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
    transition: all 0.3s ease;
    border-left: 0px solid var(--blood-red);
}

.menu-links li a:hover {
    color: var(--bronze);
    border-left: 4px solid var(--blood-red);
    padding-left: 15px;
}

.menu-footer {
    border-top: 1px solid var(--bronze);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qr-code-container {
    margin: 40px 0;
    padding: 30px 0;
    padding-bottom: 0px;
    border-top: 1px solid var(--bronze);
    border-bottom: 1px solid var(--bronze);
    text-align: center;
    background-color: rgba(42, 26, 10, 0.4);
    position: relative;
}

.qr-code-header {
    margin-bottom: 20px;
}

.propaganda-label {
    font-family: 'PropagandaSerif', serif;
    font-size: 14px;
    font-weight: bold;
    color: var(--blood-red);
    background-color: var(--parchment);
    padding: 4px 10px;
    display: inline-block;
    transform: rotate(-2deg);
}


.qr-code-display {
    width: 180px;
    height: 180px;
    background-color: var(--parchment);
    margin: 0 auto;
    padding: 10px;
    border: 1px solid var(--bronze);
    transition: transform 0.3s ease;
}

.qr-buttons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.qr-button {
    background-color: var(--dark-brown);
    color: var(--parchment);
    border: 1px solid var(--bronze);
    padding: 8px 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    margin: 0 auto;
}

.qr-button:hover {
    background-color: var(--blood-red);
}

.qr-button i {
    margin-right: 8px;
}

.qr-code-display:hover {
    transform: scale(1.05);
}

.qr-code-display table {
    margin: 0 auto;
}

.qr-code-display td {
    border: none !important;
    padding: 0 !important;
}

.qr-code-display img {
    display: block;
    margin: 0 auto;
}

.qr-code-caption {
    margin: 40px 0;
    font-size: 12px;
    color: var(--bronze);
    font-style: italic;
}

.monitoring-notice {
    font-size: 12px;
    color: var(--light-bronze);
}

.surveillance-indicator {
    width: 10px;
    height: 10px;
    background-color: var(--blood-red);
    border-radius: 50%;
    animation: blink 2s infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.fullscreen-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fog-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.fog-1, .fog-2 {
    position: absolute;
    width: 200%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxmaWx0ZXIgaWQ9ImZvZyI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuMDEiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giIHJlc3VsdD0idHVyYnVsZW5jZSIvPjxmZUNvbG9yTWF0cml4IHZhbHVlcz0iMSAwIDAgMCAwIDAgMSAwIDAgMCAwIDAgMSAwIDAgMCAwIDAgMC4xIDAiLz48L2ZpbHRlcj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0id2hpdGUiIGZpbHRlcj0idXJsKCNmb2cpIi8+PC9zdmc+');
    background-size: contain;
    opacity: 0.2;
}

.fog-1 {
    left: -50%;
    animation: fog1 120s linear infinite;
}

.fog-2 {
    left: -100%;
    animation: fog2 180s linear infinite;
}

@keyframes fog1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

@keyframes fog2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo-container {
    position: relative;
    margin-bottom: 30px;
}

.main-logo {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 15px rgba(139, 0, 0, 0.7));
}

.burning-effect {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.2) 0%, rgba(42, 26, 10, 0) 70%);
    animation: burn 3s ease-in-out infinite;
}

@keyframes burn {
    0% { opacity: 0.5; transform: translateX(-50%) scale(0.95); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.05); }
    100% { opacity: 0.5; transform: translateX(-50%) scale(0.95); }
}

.party-name {
    font-size: 3.5rem;
    color: var(--parchment);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(139, 0, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    color: var(--bronze);
    margin-bottom: 40px;
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite, fade-in 1.5s ease-out;
}

@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator i {
    font-size: 20px;
    color: var(--bronze);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

.content-section {
    padding: 120px 0;
    position: relative;
    background-color: var(--dark-overlay);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 26, 10, 0.85);
    z-index: -1;
}

.policy-section {
    position: relative;
}

.torch {
    position: absolute;
    width: 50px;
    height: 150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.torch::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #ff9900;
    border-radius: 50% 50% 0 0;
    top: 0;
    left: 10px;
    box-shadow: var(--torch-glow);
    animation: flicker 1.5s infinite alternate;
}

.torch::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 120px;
    background-color: #4d2800;
    top: 30px;
    left: 15px;
    border-radius: 5px;
}

.torch.left {
    left: 10%;
}

.torch.right {
    right: 10%;
}

@keyframes flicker {
    0%, 100% { opacity: 1; box-shadow: 0 0 20px rgba(255, 165, 0, 0.6), 0 0 30px rgba(255, 165, 0, 0.4); }
    25% { opacity: 0.8; box-shadow: 0 0 15px rgba(255, 165, 0, 0.5), 0 0 25px rgba(255, 165, 0, 0.3); }
    50% { opacity: 0.9; box-shadow: 0 0 25px rgba(255, 165, 0, 0.7), 0 0 35px rgba(255, 165, 0, 0.5); }
    75% { opacity: 0.7; box-shadow: 0 0 10px rgba(255, 165, 0, 0.4), 0 0 20px rgba(255, 165, 0, 0.2); }
}

.parchment-decree {
    background-color: var(--parchment);
    color: var(--dark-brown);
    padding: 40px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
    border-radius: 5px;
}

.wax-seal {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--blood-red);
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.wax-seal::before {
    content: 'D.A.G';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--parchment);
    font-family: 'PropagandaSerif', serif;
    font-weight: bold;
    font-size: 16px;
}

.decree-content {
    position: relative;
    z-index: 1;
}

.decree-content h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--blood-red);
    font-size: 2rem;
}

.highlighted-text {
    background-color: rgba(139, 0, 0, 0.1);
    padding: 10px;
    border-left: 4px solid var(--blood-red);
    font-weight: bold;
    margin-top: 20px;
}

.policy-container {
    background-color: rgba(42, 26, 10, 0.7);
    border: 2px solid var(--bronze);
    padding: 40px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.policy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--bronze);
    padding-bottom: 15px;
}

.policy-header h2 {
    color: var(--parchment);
    font-size: 1.8rem;
    margin: 0;
}

.policy-stamp {
    background-color: var(--blood-red);
    color: var(--parchment);
    padding: 5px 15px;
    transform: rotate(3deg);
    font-family: 'PropagandaSerif', serif;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.policy-list {
    list-style-type: none;
    padding: 0;
}

.policy-list li {
    padding: 10px 0;
    border-bottom: 1px dotted rgba(205, 127, 50, 0.3);
    position: relative;
    padding-left: 25px;
}

.policy-list li::before {
    content: '►';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--bronze);
}

.policy-list.extended li {
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.policy-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    border-left: 1px solid var(--bronze);
}

.propaganda-icon {
    font-size: 60px;
    color: var(--blood-red);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.policy-catchphrase {
    font-family: 'PropagandaSerif', serif;
    font-size: 1.2rem;
    text-align: center;
    color: var(--bronze);
    font-weight: bold;
    border-top: 1px solid var(--bronze);
    border-bottom: 1px solid var(--bronze);
    padding: 10px 0;
    width: 100%;
}

.redacted-text {
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.redacted-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 10px, rgba(0, 0, 0, 0.3) 10px, rgba(0, 0, 0, 0.3) 20px);
}

.redacted-text.revealed::before {
    display: none;
}

.interactive-section {
    background-color: rgba(50, 30, 15, 0.9);
}

.interactive-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    border: 2px solid var(--bronze);
    position: relative;
}

.section-title {
    text-align: center;
    color: var(--blood-red);
    margin-bottom: 30px;
    font-size: 2rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.question-block {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dotted var(--bronze);
}

.question {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--parchment);
    margin-bottom: 15px;
}

.form-check {
    margin-bottom: 10px;
}

.form-check-input {
    margin-right: 10px;
}

.form-check-label {
    cursor: pointer;
}

.submit-test {
    background-color: var(--blood-red);
    color: var(--parchment);
    border: none;
    padding: 12px 25px;
    font-family: 'PropagandaSerif', serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 0;
}

.submit-test:hover {
    background-color: #6b0000;
    transform: scale(1.05);
}

.test-results {
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.result-pass h3, .result-fail h3 {
    margin-bottom: 20px;
}

.result-pass h3 {
    color: var(--bronze);
}

.result-fail h3 {
    color: var(--blood-red);
}

.citizen-id-card {
    background-color: var(--dark-brown);
    border: 2px solid var(--bronze);
    padding: 20px;
    max-width: 300px;
    margin: 20px auto;
}

.card-header {
    text-align: center;
    font-family: 'PropagandaSerif', serif;
    font-size: 1.2rem;
    color: var(--bronze);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--bronze);
    padding-bottom: 10px;
}

.card-info {
    text-align: left;
    margin-bottom: 15px;
}

.card-footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--parchment);
    margin-top: 15px;
    font-style: italic;
}

.countdown {
    margin-top: 20px;
}

.timer {
    font-size: 2rem;
    font-family: monospace;
    color: var(--blood-red);
    margin-top: 10px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.lottery-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(42, 26, 10, 0.8);
    border: 2px solid var(--bronze);
    text-align: center;
}

.lottery-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--parchment);
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.time-unit span {
    display: block;
}

.time-unit .days, .time-unit .hours, .time-unit .minutes, .time-unit .seconds {
    font-size: 2.5rem;
    font-family: monospace, 'Courier New', Courier;
    color: var(--blood-red);
    background-color: rgba(0, 0, 0, 0.2);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bronze);
    margin-bottom: 10px;
    font-weight: bold;
}

.time-unit .label {
    font-size: 0.9rem;
    color: var(--bronze);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lottery-prize {
    font-size: 1.3rem;
    color: var(--bronze);
    margin-top: 20px;
    font-weight: bold;
}

.site-footer {
    background-color: rgba(20, 10, 5, 0.95);
    padding: 60px 0;
    border-top: 5px solid var(--blood-red);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 100px;
    height: auto;
}

.monitoring-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px dotted var(--bronze);
    padding-top: 15px;
    margin-top: 15px;
}

.footer-section.terms h4 {
    color: var(--bronze);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.small-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(242, 232, 192, 0.7);
}

.footer-section.purge-countdown {
    text-align: center;
}

.purge-timer {
    font-size: 2rem;
    font-family: monospace, 'Courier New', Courier;
    color: var(--blood-red);
    margin: 15px 0;
    font-weight: bold;
}

.purge-notice {
    font-size: 0.9rem;
    color: var(--bronze);
    font-style: italic;
}

[data-aos="stamp-in"] {
    opacity: 0;
    transform: scale(0.9) rotate(-3deg);
    transition-property: transform, opacity;
}

[data-aos="stamp-in"].aos-animate {
    opacity: 1;
    transform: scale(1) rotate(0);
}

@media (max-width: 992px) {
    .party-name {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .policy-illustration {
        border-left: none;
        border-top: 1px solid var(--bronze);
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .policy-header {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-header h2 {
        margin-bottom: 15px;
    }
    
    .torch {
        display: none;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 80px 0;
    }
    
    .countdown-display {
        flex-wrap: wrap;
    }
    
    .time-unit {
        min-width: 60px;
        margin-bottom: 20px;
    }
    
    .time-unit .days, .time-unit .hours, .time-unit .minutes, .time-unit .seconds {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .footer-section {
        flex: 100%;
        text-align: center;
    }
    
    .monitoring-stats {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .parchment-decree, 
    .policy-container,
    .interactive-container,
    .lottery-container {
        padding: 20px;
    }
    
    .decree-content h2,
    .section-title {
        font-size: 1.5rem;
    }
    
    .policy-header h2 {
        font-size: 1.3rem;
    }
}

.menu-links a.restricted-link {
    color: var(--blood-red);
    border-left: 3px solid var(--blood-red);
    padding-left: 10px;
}

.menu-links a.restricted-link i {
    margin-right: 8px;
}

.menu-links a.restricted-link:hover {
    background-color: rgba(139, 0, 0, 0.1);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    filter: blur(5px) brightness(0.6) grayscale(0.3);
    opacity: 0.5;
    object-fit: cover;
}