/* Web 1.0 Early Internet Nostalgia Style */
:root {
    --web-bg: #c0c0c0;
    --web-text: #000000;
    --web-link: #0000ee;
    --web-visited: #551a8b;
    --web-active: #ff0000;
    --web-panel: #e0e0e0;
    --web-border-light: #ffffff;
    --web-border-dark: #808080;
    --web-border-darker: #404040;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--web-bg);
    color: var(--web-text);
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    line-height: 1.4;
    /* Optional: A classic repeating background pattern */
    background-image: url('data:image/svg+xml;utf8,<svg width="4" height="4" xmlns="http://www.w3.org/2000/svg"><rect width="4" height="4" fill="%23c0c0c0"/><rect width="2" height="2" fill="%23b0b0b0"/></svg>');
}

h1, h2, h3, h4 {
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
    color: #000080;
}

h1 {
    font-size: 32px;
    text-align: center;
    text-shadow: 2px 2px 0px #fff;
}

h2 {
    font-size: 24px;
    border-bottom: 2px solid #000080;
    padding-bottom: 5px;
}

a {
    color: var(--web-link);
    text-decoration: underline;
}
a:visited {
    color: var(--web-visited);
}
a:active {
    color: var(--web-active);
}

img {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--web-border-dark);
}

.container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 3px outset var(--web-border-light);
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Classic Table Layout Simulation */
.layout-table {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}
.layout-row {
    display: table-row;
}
.layout-cell {
    display: table-cell;
    vertical-align: top;
    padding: 10px;
    border: 2px inset var(--web-border-light);
    background-color: var(--web-panel);
}
.sidebar {
    width: 200px;
    background-color: #ffffcc;
}
.main-content {
    background-color: #ffffff;
}

/* Navigation */
.top-nav {
    background-color: #000080;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    border: 3px outset var(--web-border-light);
    margin-bottom: 15px;
}
.top-nav a {
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    padding: 5px 15px;
    border: 2px outset var(--web-border-light);
    background-color: #c0c0c0;
    color: #000;
    margin: 0 5px;
    display: inline-block;
}
.top-nav a:active {
    border-style: inset;
}

/* Buttons */
.btn-classic {
    display: inline-block;
    padding: 5px 15px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #000;
    background-color: #c0c0c0;
    border: 3px outset var(--web-border-light);
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}
.btn-classic:active {
    border-style: inset;
    padding: 6px 14px 4px 16px; /* Shift text down/right */
}
.btn-classic.primary {
    background-color: #000080;
    color: #ffffff;
    border-color: #0000ff #000040 #000040 #0000ff;
}

/* Marquee / Blink */
.marquee-container {
    background-color: #ffff00;
    color: #ff0000;
    font-weight: bold;
    padding: 5px;
    border: 2px inset var(--web-border-light);
    margin-bottom: 15px;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-text {
    display: inline-block;
    animation: scroll-left 15s linear infinite;
}
@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.blink {
    animation: blinker 1s linear infinite;
    color: #ff0000;
    font-weight: bold;
}
@keyframes blinker {
    50% { opacity: 0; }
}

/* Hero Section */
.hero-box {
    text-align: center;
    padding: 20px;
    border: 3px double #ff0000;
    background-color: #e6e6fa;
    margin-bottom: 20px;
}
.hero-box h1 {
    color: #ff0000;
    font-family: "Comic Sans MS", cursive, sans-serif;
}
.hero-actions {
    margin-top: 20px;
}
.trust-list {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
}

/* Metrics */
.metrics-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.metrics-table td {
    border: 2px outset var(--web-border-light);
    background-color: #008080;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    font-family: Arial, sans-serif;
}
.m-num {
    font-size: 24px;
    font-weight: bold;
    color: #ffff00;
}

/* Features */
.feature-list {
    margin-bottom: 20px;
}
.feature-item {
    border: 2px inset var(--web-border-light);
    background-color: #f0f8ff;
    padding: 15px;
    margin-bottom: 10px;
}
.feature-item h3 {
    color: #008000;
}
.feature-item ul {
    margin-left: 20px;
    list-style-type: square;
}

/* Nodes */
.node-table-wrap {
    margin-bottom: 20px;
}
.node-table {
    width: 100%;
    border: 2px outset var(--web-border-light);
    background-color: #ffffff;
}
.node-table th {
    background-color: #c0c0c0;
    border: 2px outset var(--web-border-light);
    padding: 5px;
}
.node-table td {
    border: 1px solid var(--web-border-dark);
    padding: 5px;
}

/* Reviews */
.review-box {
    border: 2px inset var(--web-border-light);
    background-color: #ffffe0;
    padding: 10px;
    margin-bottom: 10px;
}
.r-stars {
    color: #ff0000;
    font-weight: bold;
}

/* Pricing */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
    margin-bottom: 20px;
}
.pricing-table td {
    border: 3px outset var(--web-border-light);
    background-color: #e0e0e0;
    padding: 15px;
    text-align: center;
    vertical-align: top;
    width: 33.33%;
}
.pricing-table td.recommended {
    background-color: #ffffcc;
    border-color: #ff0000;
}
.p-price {
    font-size: 24px;
    font-weight: bold;
    color: #000080;
    margin: 10px 0;
}
.p-feat {
    text-align: left;
    margin: 10px 0 20px 20px;
}

/* FAQ */
.faq-section {
    margin-bottom: 20px;
}
.faq-q {
    font-weight: bold;
    color: #000080;
    margin-top: 10px;
}
.faq-a {
    margin-left: 20px;
    margin-bottom: 10px;
}

/* Footer */
.classic-footer {
    text-align: center;
    border-top: 3px ridge var(--web-border-light);
    padding-top: 10px;
    margin-top: 20px;
    font-size: 12px;
}
.hit-counter {
    display: inline-block;
    background-color: #000;
    color: #0f0;
    font-family: "Courier New", Courier, monospace;
    padding: 2px 5px;
    border: 2px inset #fff;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Responsive (Minimal for Web 1.0, but necessary for modern devices) */
@media (max-width: 768px) {
    .layout-table, .layout-row, .layout-cell {
        display: block;
        width: 100%;
    }
    .sidebar {
        width: 100%;
        margin-bottom: 10px;
    }
    .pricing-table td {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}
