/**
 * Portals 95 -- Product Page Stylesheet
 * Build #950 | Compiled August 24, 1995
 *
 * Maintained by Dev Sharma (intern year)
 * "My first stylesheet. Mr. Bates said 'make it teal.' I made it teal." --DS
 *
 * NOTE: This is my first web page. I learned HTML last week.
 * NOTE: Mr. Bates reviewed it and said "ship it." I think he was serious.
 * NOTE: The teal is #008080. It is always #008080. Do not question the teal.
 */

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'MS Sans Serif', Tahoma, 'Segoe UI', Arial, sans-serif;
    font-size: 11px;
    color: #000;
    background: #008080;
    line-height: 1.4;
}

/* ========================================
   Windows 95 Primitives
   ======================================== */
.win-raised {
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
    background: #c0c0c0;
}

.win-sunken {
    border: 2px solid;
    border-color: #808080 #fff #fff #808080;
    background: #fff;
}

.win-titlebar {
    background: #000080;
    color: #fff;
    font-weight: bold;
    font-size: 11px;
    padding: 3px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.win-titlebar-inactive {
    background: #808080;
}

.win-titlebar-buttons {
    display: flex;
    gap: 2px;
}

.win-titlebar-buttons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 14px;
    background: #c0c0c0;
    border: 1px solid;
    border-color: #fff #808080 #808080 #fff;
    font-size: 8px;
    line-height: 1;
    cursor: default;
}

.win-btn {
    display: inline-block;
    padding: 4px 16px;
    font-family: 'MS Sans Serif', Tahoma, Arial, sans-serif;
    font-size: 11px;
    color: #000;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    min-width: 75px;
}

.win-btn:hover {
    background: #d4d0c8;
}

.win-btn:active,
.win-btn.pressed {
    border-color: #808080 #fff #fff #808080;
    padding: 5px 15px 3px 17px;
}

.win-btn-primary {
    border: 3px solid;
    border-color: #000 #000 #000 #000;
    padding: 3px 15px;
}

.win-window {
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
    background: #c0c0c0;
    margin-bottom: 16px;
}

.win-window-body {
    padding: 12px;
}

/* ========================================
   Page Layout
   ======================================== */
.page-wrapper {
    max-width: 780px;
    margin: 8px auto;
    padding: 4px;
}

/* ========================================
   Navigation Bar -- Taskbar Style
   ======================================== */
.navbar {
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
    background: #c0c0c0;
    padding: 2px;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
}

.start-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    font-family: 'MS Sans Serif', Tahoma, Arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    color: #000;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.start-btn:active {
    border-color: #808080 #fff #fff #808080;
}

.start-btn .start-icon {
    font-size: 14px;
    line-height: 1;
}

.nav-divider {
    width: 2px;
    height: 22px;
    border-left: 1px solid #808080;
    border-right: 1px solid #fff;
    margin: 0 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-wrap: wrap;
}

.nav-links a {
    display: inline-block;
    padding: 3px 8px;
    font-size: 11px;
    color: #000;
    text-decoration: none;
    border: 1px solid transparent;
}

.nav-links a:hover {
    border: 1px solid;
    border-color: #fff #808080 #808080 #fff;
}

.nav-links a.active {
    border: 1px solid;
    border-color: #808080 #fff #fff #808080;
    background: #d4d0c8;
}

.nav-status {
    margin-left: auto;
    font-size: 10px;
    color: #444;
    padding: 0 6px;
    border-left: 1px solid #808080;
    white-space: nowrap;
}

/* ========================================
   Header Banner
   ======================================== */
.site-header {
    background: linear-gradient(180deg, #000080 0%, #0000a0 50%, #000080 100%);
    color: #fff;
    padding: 16px 16px;
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header .logo-area {
    flex-shrink: 0;
}

.site-header .logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.1;
}

.site-header .logo-text span {
    color: #00ff00;
    font-size: 36px;
}

.site-header .logo-sub {
    font-size: 10px;
    color: #b0b0ff;
    margin-top: 2px;
}

.site-header .header-tagline {
    font-size: 13px;
    color: #ddd;
    flex: 1;
}

.site-header .header-tagline strong {
    color: #fff;
}

.ms-badge {
    font-size: 9px;
    color: #b0b0ff;
    text-decoration: none;
    display: block;
    margin-top: 4px;
}

.ms-badge:hover {
    color: #00ff00;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-window .win-titlebar {
    font-size: 12px;
}

.hero-content {
    background: #fff;
    padding: 24px 20px;
    text-align: center;
    border-top: 1px solid #808080;
}

.hero-content h1 {
    font-size: 22px;
    color: #000080;
    margin-bottom: 8px;
    line-height: 1.3;
}

.hero-content .hero-sub {
    font-size: 13px;
    color: #333;
    margin-bottom: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner {
    background: #00ff00;
    color: #000;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: bold;
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ========================================
   Desktop Preview (Fake Win95 Desktop)
   ======================================== */
.desktop-preview {
    background: #008080;
    border: 2px solid;
    border-color: #808080 #fff #fff #808080;
    padding: 16px;
    margin: 16px auto;
    max-width: 480px;
    min-height: 240px;
    position: relative;
}

.desktop-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 8px;
}

.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: default;
}

.desktop-icon .icon-img {
    font-size: 28px;
    line-height: 1;
}

.desktop-icon .icon-label {
    color: #fff;
    font-size: 10px;
    text-shadow: 1px 1px 0 #000;
    text-align: center;
    max-width: 64px;
}

.desktop-taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #c0c0c0;
    border-top: 2px solid;
    border-color: #fff #808080;
    padding: 2px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
}

.desktop-taskbar .taskbar-start {
    background: #c0c0c0;
    border: 1px solid;
    border-color: #fff #808080 #808080 #fff;
    padding: 1px 6px;
    font-weight: bold;
    font-size: 10px;
}

.desktop-taskbar .taskbar-clock {
    border: 1px solid;
    border-color: #808080 #fff #fff #808080;
    padding: 1px 6px;
    font-size: 10px;
    color: #000;
}

/* ========================================
   Download Button
   ======================================== */
.download-btn {
    display: inline-block;
    padding: 8px 28px;
    font-family: 'MS Sans Serif', Tahoma, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    background: #c0c0c0;
    border: 3px solid;
    border-color: #fff #808080 #808080 #fff;
    cursor: pointer;
    text-decoration: none;
}

.download-btn:hover {
    background: #d4d0c8;
}

.download-btn:active {
    border-color: #808080 #fff #fff #808080;
}

.big-download-btn {
    display: inline-block;
    padding: 12px 40px;
    font-family: 'MS Sans Serif', Tahoma, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    background: #c0c0c0;
    border: 3px solid;
    border-color: #fff #808080 #808080 #fff;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 12px;
}

.big-download-btn:hover {
    background: #d4d0c8;
}

.big-download-btn:active {
    border-color: #808080 #fff #fff #808080;
}

/* ========================================
   Feature Grid
   ======================================== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 8px 0;
}

.feature-card {
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
    background: #c0c0c0;
}

.feature-card .win-titlebar {
    font-size: 10px;
    padding: 2px 6px;
}

.feature-card-body {
    padding: 10px;
    background: #fff;
    border-top: 1px solid #808080;
}

.feature-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 6px;
    line-height: 1;
}

.feature-card-body h3 {
    font-size: 12px;
    color: #000080;
    margin-bottom: 4px;
}

.feature-card-body p {
    font-size: 11px;
    color: #333;
    line-height: 1.4;
}

/* ========================================
   Content Sections
   ======================================== */
.content-section {
    margin-bottom: 12px;
}

.content-section .win-window-body {
    background: #fff;
    border-top: 1px solid #808080;
}

.content-section h2 {
    font-size: 14px;
    color: #000080;
    margin-bottom: 8px;
}

.content-section h3 {
    font-size: 12px;
    color: #000080;
    margin-bottom: 4px;
    margin-top: 10px;
}

.content-section p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.content-section ul, .content-section ol {
    margin: 6px 0 8px 20px;
}

.content-section li {
    margin-bottom: 3px;
    line-height: 1.5;
}

/* ========================================
   Feature Detail Section (Features page)
   ======================================== */
.feature-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #c0c0c0;
}

.feature-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-detail-icon {
    font-size: 36px;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
    line-height: 1;
    padding-top: 2px;
}

.feature-detail-text h3 {
    margin-top: 0;
}

/* ========================================
   Info Box (Yellow Tip)
   ======================================== */
.info-box {
    background: #ffffcc;
    border: 1px solid #cccc00;
    padding: 8px 10px;
    margin: 8px 0;
    font-size: 11px;
}

.info-box strong {
    color: #666600;
}

.info-box .tip-icon {
    font-size: 14px;
    margin-right: 4px;
    vertical-align: middle;
}

/* ========================================
   Exciting Box (Green -- unique to P95's optimism)
   ======================================== */
.exciting-box {
    background: #e0ffe0;
    border: 1px solid #008000;
    padding: 8px 10px;
    margin: 8px 0;
    font-size: 11px;
    color: #004000;
}

.exciting-box strong {
    color: #006600;
}

/* ========================================
   Comparison Table
   ======================================== */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    margin: 8px 0;
}

.compare-table th {
    background: #000080;
    color: #fff;
    padding: 4px 8px;
    text-align: left;
    font-weight: bold;
    font-size: 11px;
}

.compare-table td {
    padding: 4px 8px;
    border-bottom: 1px solid #c0c0c0;
    vertical-align: top;
}

.compare-table tr:nth-child(even) {
    background: #f0f0f0;
}

.compare-table tr:nth-child(odd) {
    background: #fff;
}

.compare-table .check {
    color: #008000;
    font-weight: bold;
}

.compare-table .cross {
    color: #808080;
}

/* ========================================
   System Requirements Box
   ======================================== */
.req-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    margin: 8px 0;
}

.req-table th {
    background: #000080;
    color: #fff;
    padding: 4px 8px;
    text-align: left;
    font-weight: bold;
}

.req-table td {
    padding: 4px 8px;
    border-bottom: 1px solid #c0c0c0;
    vertical-align: top;
}

.req-table tr:nth-child(even) {
    background: #f0f0f0;
}

.req-table tr:nth-child(odd) {
    background: #fff;
}

/* ========================================
   Download Page
   ======================================== */
.download-hero {
    text-align: center;
    padding: 24px;
    background: #fff;
    border-top: 1px solid #808080;
}

.download-hero h1 {
    font-size: 18px;
    color: #000080;
    margin-bottom: 6px;
}

.download-hero .version-info {
    font-size: 10px;
    color: #808080;
    margin-bottom: 16px;
}

.download-details {
    font-size: 10px;
    color: #808080;
    margin-top: 8px;
}

.download-details td {
    padding: 2px 12px 2px 0;
    text-align: left;
}

/* ========================================
   Mint / Order Section
   ======================================== */
.mint-section {
    background: #fff;
    border-top: 1px solid #808080;
    text-align: center;
    padding: 16px 12px;
}

.mint-section h2 {
    font-size: 14px;
    color: #000080;
    margin-bottom: 4px;
}

.mint-section .mint-subtitle {
    font-size: 11px;
    color: #808080;
    margin-bottom: 12px;
}

.mint-network-badge {
    display: inline-block;
    font-family: 'MS Sans Serif', Tahoma, Arial, sans-serif;
    font-size: 9px;
    font-weight: bold;
    color: #808000;
    border: 1px solid #808000;
    background: #ffffcc;
    padding: 2px 8px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mint-info-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid #c0c0c0;
    font-size: 11px;
}

.mint-info-row .label {
    color: #808080;
    text-transform: uppercase;
    font-size: 10px;
}

.mint-info-row .value {
    color: #000;
    font-weight: bold;
}

.mint-connect-btn,
.mint-btn {
    display: block;
    width: 100%;
    padding: 8px 16px;
    font-family: 'MS Sans Serif', Tahoma, Arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid;
    cursor: pointer;
    margin: 6px 0;
}

.mint-connect-btn {
    background: #c0c0c0;
    border-color: #fff #808080 #808080 #fff;
    color: #000;
}

.mint-connect-btn:hover {
    background: #d4d0c8;
}

.mint-connect-btn:active {
    border-color: #808080 #fff #fff #808080;
}

.mint-btn {
    background: #c0c0c0;
    border-color: #fff #808080 #808080 #fff;
    color: #808080;
    cursor: not-allowed;
}

.mint-btn.active {
    background: #000080;
    border-color: #0000b0 #000060 #000060 #0000b0;
    color: #fff;
    cursor: pointer;
}

.mint-btn.active:hover {
    background: #0000a0;
}

.mint-status {
    font-size: 10px;
    color: #808080;
    margin-top: 8px;
    min-height: 14px;
}

.mint-bundle-note {
    font-size: 10px;
    color: #808080;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #c0c0c0;
    line-height: 1.5;
}

.mint-bundle-note strong {
    color: #000080;
}

.mint-bundle-note a {
    color: #0000ff;
}

/* ========================================
   Links
   ======================================== */
a {
    color: #0000ff;
}

a:visited {
    color: #800080;
}

a:hover {
    color: #ff0000;
}

a:active {
    color: #ff0000;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
    background: #c0c0c0;
    padding: 8px 12px;
    margin-top: 8px;
    text-align: center;
    font-size: 10px;
    color: #444;
}

.site-footer a {
    color: #000080;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-bottom: 4px;
}

.footer-links a {
    margin: 0 8px;
}

.footer-copy {
    color: #808080;
    font-size: 9px;
    margin-top: 4px;
}

/* ========================================
   Horizontal Rule -- Pixel Style
   ======================================== */
.pixel-hr {
    border: none;
    height: 2px;
    border-top: 1px solid #808080;
    border-bottom: 1px solid #fff;
    margin: 10px 0;
}

/* ========================================
   Testimonial Boxes
   ======================================== */
.testimonial {
    margin: 8px 0;
    padding: 8px;
    background: #f8f8ff;
    border-left: 3px solid #000080;
    font-style: italic;
}

.testimonial .attribution {
    font-size: 10px;
    color: #808080;
    font-style: normal;
    margin-top: 4px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 600px) {
    .page-wrapper {
        margin: 4px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .nav-status {
        display: none;
    }

    .desktop-preview {
        min-height: 180px;
    }

    .feature-detail {
        flex-direction: column;
    }

    .feature-detail-icon {
        width: auto;
    }
}
