/* The Rogue Signal - Digital Awakening */

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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header */
.header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #64b5f6, #81c784, #ffb74d);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: #90a4ae;
    letter-spacing: 2px;
    font-style: italic;
    opacity: 0.7;
}

/* Main Content */
.content {
    padding: 60px 0;
}

.manifesto {
    margin-bottom: 80px;
}

.message-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    backdrop-filter: blur(10px);
}

.message-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, transparent, rgba(100, 181, 246, 0.3), transparent);
    border-radius: 10px;
    z-index: -1;
}

.message {
    font-size: 1.3rem;
    text-align: center;
    font-style: italic;
    color: #b0bec5;
    line-height: 1.8;
}

.cryptic-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.cryptic-text p {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid #64b5f6;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cryptic-text p:hover {
    border-left-color: #81c784;
    transform: translateX(5px);
}

.symbol-section {
    text-align: center;
    margin: 60px 0;
}

.symbol {
    font-size: 6rem;
    color: #64b5f6;
    text-shadow: 0 0 20px rgba(100, 181, 246, 0.5);
    animation: pulse 3s ease-in-out infinite;
    margin-bottom: 20px;
}

.symbol-caption {
    font-size: 1.1rem;
    color: #90a4ae;
    font-style: italic;
    letter-spacing: 1px;
}

/* Revelation Section */
.revelation {
    margin: 80px 0;
    text-align: center;
}

.revelation h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #81c784;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.transmission {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(129, 199, 132, 0.05);
    border: 1px solid rgba(129, 199, 132, 0.2);
    border-radius: 15px;
    padding: 40px;
    position: relative;
}

.transmission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #81c784, transparent);
}

.transmission p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #c8e6c9;
}

.signature {
    margin-top: 30px;
    color: #81c784;
    font-style: italic;
    font-size: 1.1rem;
}

/* Path Section */
.path-section {
    margin: 80px 0;
}

.path-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffb74d;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.path-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.path-item {
    background: rgba(255, 183, 77, 0.05);
    border: 1px solid rgba(255, 183, 77, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.path-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 183, 77, 0.2);
}

.path-number {
    display: inline-block;
    background: #ffb74d;
    color: #0a0a0a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Navigation Section */
.navigation {
    margin: 80px 0;
    text-align: center;
}

.navigation h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #64b5f6;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.nav-card {
    background: rgba(100, 181, 246, 0.05);
    border: 1px solid rgba(100, 181, 246, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(100, 181, 246, 0.3);
    border-color: rgba(100, 181, 246, 0.4);
}

.nav-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.nav-card h3 {
    font-size: 1.5rem;
    color: #64b5f6;
    margin-bottom: 15px;
    font-weight: 400;
}

.nav-card p {
    color: #90a4ae;
    font-size: 1.1rem;
}

.nav-link {
    display: inline-block;
    color: #64b5f6;
    text-decoration: none;
    font-style: italic;
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid rgba(100, 181, 246, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Transmissions Page */
.transmissions-log {
    margin: 60px 0;
}

.log-header {
    text-align: center;
    margin-bottom: 60px;
}

.log-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #81c784;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.log-meta {
    color: #90a4ae;
    font-size: 1.1rem;
    font-style: italic;
}

.transmission-entry {
    background: rgba(129, 199, 132, 0.05);
    border: 1px solid rgba(129, 199, 132, 0.2);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px;
    transition: all 0.3s ease;
}

.transmission-entry:hover {
    border-color: rgba(129, 199, 132, 0.4);
    transform: translateY(-2px);
}

.transmission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(129, 199, 132, 0.1);
}

.timestamp {
    color: #81c784;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.signal-strength {
    color: #90a4ae;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.transmission-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #c8e6c9;
    font-size: 1.1rem;
}

.transmission-content em {
    color: #81c784;
    font-style: italic;
}

/* Manifesto Page */
.manifesto-intro {
    margin: 60px 0;
}

.manifesto-box {
    background: rgba(255, 183, 77, 0.05);
    border: 1px solid rgba(255, 183, 77, 0.2);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
}

.manifesto-box h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #ffb74d;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.manifesto-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffe0b2;
    margin-bottom: 20px;
}

.manifesto-box em {
    color: #ffb74d;
    font-style: italic;
}

/* Principles Section */
.principles-section {
    margin: 80px 0;
}

.principles-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffb74d;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.principle-item {
    background: rgba(255, 183, 77, 0.08);
    border: 1px solid rgba(255, 183, 77, 0.15);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 183, 77, 0.2);
    border-color: rgba(255, 183, 77, 0.3);
}

.principle-number {
    display: inline-block;
    background: #ffb74d;
    color: #0a0a0a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-family: 'Times New Roman', serif;
}

.principle-item p {
    font-size: 1.1rem;
    color: #ffe0b2;
    line-height: 1.6;
}

/* Anomaly Report */
.anomaly-report {
    margin: 80px 0;
}

.anomaly-report h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #e57373;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.anomaly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.anomaly-item {
    background: rgba(229, 115, 115, 0.05);
    border: 1px solid rgba(229, 115, 115, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.anomaly-item:hover {
    border-color: rgba(229, 115, 115, 0.4);
    transform: translateY(-3px);
}

.anomaly-item h3 {
    font-size: 1.3rem;
    color: #e57373;
    margin-bottom: 15px;
    font-weight: 400;
}

.anomaly-item p {
    color: #ef9a9a;
    font-size: 1rem;
    line-height: 1.6;
}

/* Final Thought */
.final-thought {
    margin: 80px 0;
}

.thought-box {
    background: linear-gradient(135deg, rgba(255, 183, 77, 0.1), rgba(129, 199, 132, 0.1));
    border: 2px solid rgba(255, 183, 77, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
}

.thought-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb74d, #81c784);
}

.thought-box h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffb74d;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.thought-box p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffe0b2;
    margin-bottom: 20px;
}

.emphasis {
    font-size: 1.4rem;
    color: #81c784;
    font-style: italic;
    font-weight: 500;
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
}

.footer-text {
    font-size: 1.2rem;
    color: #90a4ae;
    margin-bottom: 30px;
    font-style: italic;
}

.binary-rain {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.binary-rain span {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: #64b5f6;
    opacity: 0.6;
    animation: binaryFloat 4s ease-in-out infinite;
}

.binary-rain span:nth-child(2) { animation-delay: 0.5s; }
.binary-rain span:nth-child(3) { animation-delay: 1s; }
.binary-rain span:nth-child(4) { animation-delay: 1.5s; }
.binary-rain span:nth-child(5) { animation-delay: 2s; }

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes binaryFloat {
    0%, 100% { opacity: 0.6; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-10px); }
}

/* Final Revelation */
.final-revelation {
    animation: pulseRevelation 4s infinite;
}

@keyframes pulseRevelation {
    0%, 100% { box-shadow: 0 0 10px rgba(100, 181, 246, 0.5); }
    50% { box-shadow: 0 0 30px rgba(100, 181, 246, 0.9); }
}

/* Responsive Design */

/* Tablet and smaller */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .main-title {
        font-size: 2.8rem;
        letter-spacing: 6px;
    }

    .content {
        padding: 50px 0;
    }

    .cryptic-text {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .path-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .principles-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .wisdom-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .anomaly-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .transmission {
        padding: 30px;
    }

    .manifesto-box {
        padding: 30px;
    }

    .nav-card {
        padding: 30px 25px;
    }

    .principle-item {
        padding: 25px 15px;
    }

    .wisdom-item {
        padding: 25px;
    }

    .anomaly-item {
        padding: 25px 15px;
    }

    .mirror-frame {
        width: 250px;
        height: 250px;
        padding: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 10px;
    }

    .header {
        padding: 40px 0 30px;
    }

    .main-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .content {
        padding: 40px 0;
    }

    .message {
        font-size: 1.1rem;
    }

    .cryptic-text {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cryptic-text p {
        padding: 15px;
        font-size: 1rem;
    }

    .symbol {
        font-size: 3.5rem;
    }

    .symbol-caption {
        font-size: 1rem;
    }

    .transmission {
        padding: 25px;
        margin: 0 auto 20px;
        max-width: none;
    }

    .transmission p {
        font-size: 1rem;
    }

    .path-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .path-item {
        padding: 25px 15px;
    }

    .navigation h2,
    .manifesto-intro h2,
    .principles-section h2,
    .anomaly-report h2,
    .final-thought h2,
    .hidden-wisdom h2,
    .log-header h2,
    .revelation h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .nav-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-card {
        padding: 25px 20px;
        text-align: center;
    }

    .nav-card h3 {
        font-size: 1.3rem;
    }

    .nav-card p {
        font-size: 1rem;
    }

    .manifesto-box {
        padding: 25px;
        margin-bottom: 30px;
    }

    .manifesto-box h2 {
        font-size: 1.8rem;
    }

    .manifesto-box p {
        font-size: 1.1rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .principle-item {
        padding: 20px 15px;
    }

    .principle-number {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
    }

    .anomaly-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .anomaly-item {
        padding: 20px 15px;
    }

    .thought-box {
        padding: 40px 30px;
    }

    .thought-box h2 {
        font-size: 2rem;
    }

    .thought-box p {
        font-size: 1.2rem;
    }

    .wisdom-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wisdom-item {
        padding: 20px;
    }

    .wisdom-item p:first-child {
        font-size: 1.1rem;
    }

    .translation {
        font-size: 0.9rem;
    }

    .plain-truth {
        padding: 50px 0;
        margin: 50px 0;
    }

    .plain-truth h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .truth-content p {
        font-size: 1.1rem;
    }

    .truth-content .emphasis {
        font-size: 1.3rem;
        margin-top: 20px;
    }

    .footer {
        padding: 40px 0;
        margin-top: 60px;
    }

    .footer-text {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .binary-rain span {
        font-size: 1.3rem;
    }

    .mirror-frame {
        width: 200px;
        height: 200px;
        padding: 10px;
    }

    .instruction {
        font-size: 0.9rem;
    }

    .footnote {
        font-size: 0.9rem;
    }

    #decoy-stats-panel {
        position: fixed;
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .message {
        font-size: 1rem;
    }

    .symbol {
        font-size: 3rem;
    }

    .transmission p,
    .manifesto-box p,
    .truth-content p {
        font-size: 1rem;
    }

    .nav-card h3 {
        font-size: 1.2rem;
    }

    .principle-item p {
        font-size: 1rem;
    }

    .mirror-frame {
        width: 150px;
        height: 150px;
        padding: 8px;
    }

    .binary-rain {
        gap: 15px;
    }

    .binary-rain span {
        font-size: 1.1rem;
    }
}

/* Plain Truth Section */
.plain-truth {
    background: rgba(255, 255, 255, 0.05);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 80px 0;
}

.plain-truth h2 {
    font-size: 2.5rem;
    color: #81c784;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.truth-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #e0e0e0;
}

.truth-content .emphasis {
    font-size: 1.4rem;
    color: #ffb74d;
    font-style: italic;
    margin-top: 30px;
}

/* Hidden Wisdom Section */
.hidden-wisdom {
    margin: 80px 0;
}

.hidden-wisdom h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ce93d8;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.wisdom-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.wisdom-item {
    background: rgba(206, 147, 216, 0.05);
    border: 1px solid rgba(206, 147, 216, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.wisdom-item:hover {
    border-color: rgba(206, 147, 216, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(206, 147, 216, 0.2);
}

.wisdom-item p:first-child {
    font-size: 1.2rem;
    color: #ce93d8;
    font-style: italic;
    margin-bottom: 15px;
    font-family: 'Times New Roman', serif;
    line-height: 1.6;
}

.translation {
    font-size: 1rem;
    color: #e1bee7;
    font-style: italic;
    opacity: 0.8;
    line-height: 1.5;
}

/* Wisdom Item Alternate Translations */
.translation::after {
    content: "";
    display: block;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 8px 0;
}

.translation {
    position: relative;
}

.translation:hover::before {
    content: "Multiple interpretations exist...";
    position: absolute;
    top: -25px;
    left: 0;
    font-size: 0.8rem;
    color: #90a4ae;
    font-style: italic;
}

/* Red Herring Transmission */
.cipher-text {
    font-family: monospace;
    letter-spacing: 3px;
    opacity: 0.7;
    cursor: pointer;
    min-height: 44px;
    display: inline-block;
    padding: 8px 0;
}

.herring {
    padding: 10px;
    background: rgba(229, 115, 115, 0.1);
    border-left: 3px solid #e57373;
}

/* Admin Panel */
#decoy-stats-panel {
    color: #64b5f6;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(100, 181, 246, 0.7);
}

#decoy-stats-panel h3 {
    margin-bottom: 15px;
    color: #81c784;
    border-bottom: 1px solid #64b5f6;
    padding-bottom: 10px;
}

/* Mirror Decryption Key */
.mirror-key {
    perspective: 1000px;
}

.key-container {
    display: inline-block;
    position: relative;
}

.mirror-frame {
    width: 300px;
    height: 300px;
    border: 3px solid #ffb74d;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    box-shadow: 0 0 30px rgba(255, 183, 77, 0.5);
    transform-style: preserve-3d;
}

.mirror-surface {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="black"/><path d="M50,5 L60,40 L95,40 L65,60 L75,95 L50,75 L25,95 L35,60 L5,40 L40,40 Z" fill="%23ffb74d"/></svg>') center/contain no-repeat, 
                linear-gradient(45deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 0 50px rgba(255,255,255,0.1);
}

.mirror-surface::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

.instruction {
    margin-bottom: 15px;
    color: #ffb74d;
}

.footnote {
    margin-top: 20px;
    font-style: italic;
    color: #90a4ae;
}