@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Roboto+Mono:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #ccc;
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.3) 2px,
            rgba(17, 17, 17, 0.3) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.3) 2px,
            rgba(17, 17, 17, 0.3) 4px
        );
}

/* Top navigation - Hamburger Menu */
.top-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: block;
    visibility: visible;
}

.hamburger-menu {
    background: rgba(0, 179, 0, 0.2);
    border: 2px solid #1aff1a;
    border-radius: 6px;
    padding: 12px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(26, 255, 26, 0.6);
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    margin: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    pointer-events: auto;
    user-select: none;
}

.hamburger-menu:hover {
    background: rgba(0, 179, 0, 0.25);
    border-color: #1aff1a;
    box-shadow: 0 0 15px rgba(26, 255, 26, 0.5);
}

.hamburger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: #1aff1a;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(26, 255, 26, 0.8);
    position: relative;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    border-left: 2px solid #00b300;
    transition: width 0.3s ease;
    overflow: hidden;
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 179, 0, 0.3);
    pointer-events: none;
}

.menu-overlay.active {
    width: 300px;
    pointer-events: auto;
}

.menu-content {
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-link {
    color: #1aff1a;
    text-decoration: none;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.1em;
    font-weight: bold;
    padding: 15px 20px;
    border: 2px solid #00b300;
    border-radius: 6px;
    background: rgba(0, 179, 0, 0.1);
    text-shadow: 0 0 5px rgba(26, 255, 26, 0.5);
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.menu-link:hover {
    background: rgba(0, 179, 0, 0.2);
    border-color: #1aff1a;
    box-shadow: 0 0 15px rgba(26, 255, 26, 0.5);
    transform: translateX(-5px);
}

.reaper-counter {
    font-family: 'Arial Black', Arial, sans-serif;
    color: white;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 20px;
    padding: 10px;
}

.reaper-counter #counter {
    font-weight: bold;
}

/* Reaper support message */
.reaper-support-message {
    display: block;
    background: rgba(0, 179, 0, 0.15);
    border: 2px solid #00b300;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 15px auto 25px;
    max-width: 800px;
    text-align: center;
    color: #1aff1a;
    font-size: 0.95em;
    line-height: 1.6;
    font-family: 'Roboto Mono', monospace;
    text-shadow: 0 0 5px rgba(26, 255, 26, 0.5);
    box-shadow: 0 0 10px rgba(0, 179, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: default;
}

.reaper-support-message:hover {
    background: rgba(0, 179, 0, 0.18);
    border-color: #00ff00;
    box-shadow: 0 0 12px rgba(26, 255, 26, 0.4);
}


.container {
    max-width: 600px;
    margin: 40px auto;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 179, 0, 0.5);
    border: 1px solid #333;
}

h1 {
    font-family: 'Creepster', cursive;
    text-align: center;
    color: #1aff1a;
    text-shadow: 0 0 10px #00b300;
    font-size: 2.8em;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

h1 .i-letter {
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: lowercase;
}

.subtitle {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.summary {
    background: #111;
    border: 1px solid #333;
    border-left: 3px solid #1aff1a;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 6px;
    text-align: center;
}

.summary p {
    color: #ccc;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

.summary strong {
    color: #1aff1a;
}

.page-header {
    max-width: calc(1100px + 40px);
    margin: 0 auto 20px;
    padding: 10px 20px;
    border: 1px solid #222;
    border-radius: 10px;
    background: #0d0d0d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-brand h1 {
    font-family: 'Creepster', cursive;
    margin: 0;
    color: #1aff1a;
    text-shadow: 0 0 8px #00b300;
}

.header-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.header-links a {
    color: #1aff1a;
    text-decoration: none;
    border: 1px solid #00b300;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 0.9em;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-links a:hover {
    background: rgba(0, 255, 0, 0.1);
    color: #fff;
}

.top-ten {
    margin-top: 30px;
    background: #0c0c0c;
    border: 1px solid #00b300;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.section-heading h2 {
    font-family: 'Creepster', cursive;
    color: #1aff1a;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #00b300;
}

.section-heading p {
    color: #ccc;
    margin: 0;
    line-height: 1.6;
}

.top-ten-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.95em;
}

.top-ten-table th,
.top-ten-table td {
    border-bottom: 1px solid #222;
    padding: 12px 10px;
}

.top-ten-table th {
    text-align: left;
    color: #1aff1a;
    font-size: 0.95em;
}

.top-ten-table tbody tr:hover {
    background: rgba(0, 255, 0, 0.05);
}

.myths-section,
.tales-section {
    margin-top: 30px;
    border: 1px solid #1aff1a;
    border-radius: 15px;
    padding: 25px;
    background: #111;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

.myths-grid,
.tales-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.myths-grid article,
.tales-grid article {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #222;
    border-radius: 10px;
    padding: 15px;
    min-height: 140px;
}

.myths-grid h3,
.tales-grid h3 {
    margin-top: 0;
    color: #1aff1a;
}

.resource-link {
    margin-top: 30px;
    border: 1px solid #00ff00;
    border-radius: 12px;
    padding: 20px;
    background: rgba(0, 255, 0, 0.05);
    text-align: center;
}

.author-card {
    margin: 30px 0;
    padding: 20px;
    border: 1px solid #1aff1a;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 18px rgba(0, 255, 0, 0.15);
}

.author-card h2 {
    font-family: 'Creepster', cursive;
    margin-top: 0;
    color: #1aff1a;
    text-shadow: 0 0 8px #00b300;
}

.author-card p {
    color: #ccc;
    line-height: 1.6;
}

.simple-nav {
    max-width: 1100px;
    margin: 10px auto 20px;
    text-align: center;
    color: #1aff1a;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.simple-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin: 0 6px;
}

.simple-nav span {
    color: #1aff1a;
    margin: 0 4px;
}

.top-ten-table-wrapper {
    overflow-x: auto;
}

footer {
    margin-top: 40px;
    padding: 30px 0;
    text-align: center;
    color: #555;
    font-size: 0.8em;
    border-top: 1px solid #333;
}

.footer-links {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #1aff1a;
    text-decoration: none;
    font-weight: bold;
}

.footer-disclaimer {
    margin: 10px auto;
    max-width: 800px;
    color: #bbb;
    font-size: 0.85em;
    line-height: 1.5;
}

.hero-content, .methodology, .top-ten, .resource-link {
    margin: 30px 0;
    padding: 0 10px;
}

.hero-content h2,
.methodology h2,
.top-ten h2,
.resource-link h2 {
    font-family: 'Creepster', cursive;
    color: #1aff1a;
    text-shadow: 0 0 8px #00b300;
    margin-bottom: 15px;
    text-align: center;
}

.hero-content p,
.methodology p,
.top-ten p,
.resource-link p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.methodology-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.methodology-list li {
    border-left: 3px solid #1aff1a;
    padding-left: 12px;
    color: #ccc;
    font-size: 0.95em;
}

.top-ten-list {
    list-style: decimal;
    margin: 20px 0 0 1.5rem;
    padding: 0;
    color: #ddd;
    line-height: 1.7;
}

.top-ten-list li {
    margin-bottom: 12px;
}

.top-ten {
    background: radial-gradient(circle at top, rgba(0, 255, 0, 0.2), rgba(0, 0, 0, 0.95));
    border: 1px solid #00ff00;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.25);
}

.top-ten-list li {
    padding: 12px;
    border-left: 3px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.top-ten-list li:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.top-ten-list li:hover {
    border-color: #1aff1a;
    background: rgba(0, 255, 0, 0.05);
}

.resource-link-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 26px;
    border: 2px solid #1aff1a;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    color: #fff;
    background: transparent;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0, 179, 0, 0.5);
    transition: all 0.3s ease;
}

.resource-link-btn:hover {
    background: rgba(0, 179, 0, 0.15);
    box-shadow: 0 0 25px rgba(26, 255, 26, 0.5);
}

.resource-container {
    max-width: 1100px;
}

.resource-hero {
    text-align: center;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 10px;
    background: rgba(17, 17, 17, 0.9);
    box-shadow: inset 0 0 30px rgba(0, 179, 0, 0.1);
}

.resource-hero h1 {
    font-size: 2.4em;
    color: #1aff1a;
    margin-bottom: 20px;
}

.resource-section {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 0 20px rgba(0, 179, 0, 0.3);
}

.resource-section h2 {
    font-family: 'Creepster', cursive;
    color: #1aff1a;
    margin-bottom: 15px;
    text-shadow: 0 0 8px #00b300;
    text-align: left;
}

.resource-section p {
    color: #ccc;
    line-height: 1.7;
}

.resource-checklist {
    list-style: disc;
    padding-left: 1.5rem;
    color: #ddd;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resource-checklist li strong {
    color: #1aff1a;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.roadmap-card {
    border: 1px solid #1aff1a;
    border-radius: 10px;
    padding: 15px;
    background: rgba(0, 179, 0, 0.08);
}

.roadmap-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1aff1a;
}

.hacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.hacks-grid article {
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 15px;
    background: #0e0e0e;
}

.hacks-grid h3 {
    color: #1aff1a;
    margin-top: 0;
}

.hacks-grid ul {
    padding-left: 1.2rem;
    color: #ccc;
    line-height: 1.6;
}

.hacks-grid li {
    margin-bottom: 10px;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.quote-grid blockquote {
    margin: 0;
    padding: 20px;
    border-left: 4px solid #1aff1a;
    font-style: italic;
    color: #fff;
    background: rgba(0, 179, 0, 0.08);
}

.reaper-quote {
    margin-top: 20px;
    padding: 20px;
    border-left: 4px solid #1aff1a;
    font-style: italic;
    color: #fff;
    background: rgba(0, 179, 0, 0.08);
    min-height: 120px;
    display: flex;
    align-items: center;
}

.faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.faq-item {
    border: 1px solid #222;
    border-radius: 10px;
    padding: 15px;
    background: rgba(17, 17, 17, 0.9);
}

.faq-item h3 {
    margin-top: 0;
    color: #1aff1a;
}

.faq-item p {
    margin-bottom: 0;
    color: #ccc;
    line-height: 1.6;
}

label {
    color: #ccc;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
    display: block;
    font-size: 0.9em;
}

input, select {
    background: #111;
    border: 1px solid #00b300;
    color: #ccc;
    padding: 10px;
    border-radius: 6px;
    width: 100%;
    margin-top: 6px;
    font-family: 'Roboto Mono', monospace;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: #1aff1a;
    box-shadow: 0 0 8px rgba(26, 255, 26, 0.4);
}

input::placeholder {
    color: #666;
}

button {
    background: #00b300;
    color: white;
    border: none;
    padding: 14px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    box-shadow: 0 0 15px rgba(26, 255, 26, 0.6);
    animation: pulse 2s infinite;
    transition: 0.3s;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    background: #1aff1a;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(26, 255, 26, 0.9);
}

button:active {
    transform: scale(0.98);
}

.verdict {
    margin-top: 30px;
    padding: 20px;
    background: #111;
    border-left: 5px solid #1aff1a;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 0 15px rgba(0, 179, 0, 0.3);
}

.verdict h2 {
    color: #1aff1a;
    margin: 0 0 10px;
    font-family: 'Creepster', cursive;
    font-size: 1.8em;
    text-shadow: 0 0 8px #00b300;
}

.verdict .sub {
    color: #888;
    font-size: 0.9em;
    margin: 10px 0 20px;
    font-style: italic;
}

.death-date {
    color: #1aff1a;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    padding: 12px;
    background: rgba(0, 179, 0, 0.1);
    border: 1px solid #00b300;
    border-radius: 6px;
    text-shadow: 0 0 8px rgba(26, 255, 26, 0.5);
}

.death-date strong {
    color: #1aff1a;
    font-size: 1.2em;
}

.miles-left {
    color: #1aff1a;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    padding: 12px;
    background: rgba(0, 179, 0, 0.1);
    border: 1px solid #00b300;
    border-radius: 6px;
    text-shadow: 0 0 8px rgba(26, 255, 26, 0.5);
}

.miles-left strong {
    color: #1aff1a;
    font-size: 1.2em;
}

.years {
    font-size: 1.5em;
    color: #1aff1a;
    text-shadow: 0 0 10px #00b300;
}

.breakdown {
    list-style: none;
    padding: 0;
    font-size: 0.95em;
    margin: 20px 0;
}

.breakdown li {
    padding: 8px 0;
    border-bottom: 1px dashed #333;
    color: #ccc;
}

.breakdown li:last-child {
    border-bottom: none;
    font-weight: bold;
    color: #1aff1a;
    font-size: 1.1em;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #333;
}

.breakdown strong {
    color: #1aff1a;
}

.disclaimer {
    font-size: 0.8em;
    color: #888;
    margin-top: 15px;
    font-style: italic;
    text-align: center;
}

.error {
    color: #1aff1a;
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #555;
    font-size: 0.8em;
    padding: 20px;
}

.privacy-note {
    display: block;
    margin-top: 10px;
    color: #888;
    font-size: 0.9em;
    font-style: italic;
}

@keyframes pulse {
    0% { 
        box-shadow: 0 0 15px rgba(26, 255, 26, 0.6); 
    }
    50% { 
        box-shadow: 0 0 25px rgba(26, 255, 26, 0.9); 
    }
    100% { 
        box-shadow: 0 0 15px rgba(26, 255, 26, 0.6); 
    }
}

/* Spooky flicker effect */
@keyframes flicker {
    0%, 100% { opacity: 1; }
    10% { opacity: 0.8; }
    20% { opacity: 0.9; }
    30% { opacity: 0.7; }
    40% { opacity: 1; }
    50% { opacity: 0.6; }
    60% { opacity: 0.9; }
    70% { opacity: 0.8; }
    80% { opacity: 1; }
    90% { opacity: 0.7; }
}

.flickering {
    animation: flicker 0.5s ease-in-out;
}

/* SEO: Hidden but accessible to search engines */
.seo-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* About page styles */
.about-content {
    line-height: 1.8;
    color: #ccc;
}

.about-content p {
    margin: 20px 0;
    font-size: 1em;
}

.about-content h2 {
    color: #1aff1a;
    font-family: 'Creepster', cursive;
    font-size: 1.5em;
    margin: 30px 0 20px;
    text-shadow: 0 0 8px #00b300;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-list li {
    padding: 12px 0 12px 25px;
    position: relative;
    color: #ccc;
    border-bottom: 1px dashed #333;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1aff1a;
    text-shadow: 0 0 5px rgba(26, 255, 26, 0.5);
}

.about-data {
    margin-top: 25px;
    padding: 20px;
    border: 1px solid #1aff1a;
    border-radius: 12px;
    background: rgba(0, 179, 0, 0.05);
}

.about-data h2 {
    margin-top: 0;
    color: #1aff1a;
    font-family: 'Creepster', cursive;
    font-size: 1.4em;
}

.about-disclaimer {
    font-style: italic;
    color: #ffb347;
    margin-top: 10px;
}

.about-signature {
    margin: 25px 0;
    font-style: italic;
    color: #1aff1a;
    text-align: center;
    text-shadow: 0 0 5px rgba(26, 255, 26, 0.3);
}

.about-nav {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.about-link {
    display: inline-block;
    color: #1aff1a;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #00b300;
    border-radius: 6px;
    background: rgba(0, 179, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(26, 255, 26, 0.5);
}

.about-link:hover {
    background: rgba(0, 179, 0, 0.2);
    border-color: #1aff1a;
    box-shadow: 0 0 15px rgba(26, 255, 26, 0.5);
    transform: translateY(-2px);
}

.about-link:active {
    transform: translateY(0);
}

/* Contact form section */
.contact-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #333;
}

.contact-section h2 {
    color: #1aff1a;
    font-family: 'Creepster', cursive;
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 8px #00b300;
}

.contact-form-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    background: #111;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #00b300;
    box-shadow: 0 0 15px rgba(0, 179, 0, 0.3);
}

.contact-form {
    width: 100%;
    max-width: 600px;
}

.contact-form label {
    color: #1aff1a;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    display: block;
    font-size: 0.9em;
    text-shadow: 0 0 5px rgba(26, 255, 26, 0.5);
}

.contact-form input,
.contact-form textarea {
    background: #0a0a0a;
    border: 2px solid #00b300;
    color: #ccc;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    margin-top: 8px;
    font-family: 'Roboto Mono', monospace;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1aff1a;
    box-shadow: 0 0 10px rgba(26, 255, 26, 0.5);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-submit-btn {
    background: #00b300;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    box-shadow: 0 0 15px rgba(26, 255, 26, 0.6);
    transition: all 0.3s ease;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-submit-btn:hover {
    background: #1aff1a;
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(26, 255, 26, 0.9);
}

.contact-submit-btn:active {
    transform: scale(0.98);
}

.contact-submit-btn:disabled {
    background: #555;
    cursor: not-allowed;
    opacity: 0.6;
}

.contact-form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    display: none;
}

.contact-form-message.success {
    display: block;
    background: rgba(0, 179, 0, 0.2);
    border: 2px solid #00b300;
    color: #1aff1a;
    text-shadow: 0 0 5px rgba(26, 255, 26, 0.5);
}

.contact-form-message.error {
    display: block;
    background: rgba(179, 0, 0, 0.2);
    border: 2px solid #b30000;
    color: #ff1a1a;
}

/* About page container - wider for better readability */
.about-page .container {
    max-width: 800px;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    body {
        padding: 10px;
    }
    
    .top-nav {
        top: 10px;
        right: 10px;
    }
    
    .hamburger-menu {
        padding: 10px 8px;
    }
    
    .hamburger-menu span {
        width: 22px;
        height: 2.5px;
    }
    
    .menu-overlay.active {
        width: 100%;
    }
    
    .about-content h2 {
        font-size: 1.3em;
    }
    
    .about-list li {
        padding-left: 30px;
        font-size: 0.95em;
    }
    
    .about-signature {
        font-size: 0.95em;
    }
    
    .about-page .container {
        max-width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .reaper-counter {
        font-size: 1em;
        padding: 8px;
        margin-bottom: 15px;
    }
    
    .container {
        margin: 20px auto;
        padding: 20px;
    }
    
    h1 {
        font-size: 2.2em;
        letter-spacing: 1px;
    }
    
    .verdict h2 {
        font-size: 1.5em;
    }
    
    input, select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    button {
        font-size: 1em;
        padding: 12px;
    }
    
    .death-date {
        font-size: 1em;
        padding: 10px;
    }
    
    .summary {
        padding: 12px 15px;
        font-size: 0.9em;
    }
    
    .reaper-support-message {
        font-size: 0.85em;
        padding: 12px 15px;
        margin: 10px auto 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    
    .reaper-counter {
        font-size: 0.9em;
    }
    
    .container {
        padding: 15px;
    }
}

