/* S.M.U.T. - Museum Tracker Stylesheet */

:root {
    --ink: #e9f3f1;
    --muted: #b6c7c2;
    --bg-1: #0f1f1b;
    --bg-2: #132b28;
    --bg-3: #1f3b3a;
    --card: rgba(20, 42, 40, 0.85);
    --border: #2f4b48;
    --accent: #4fd1b5;
    --accent-2: #f2c14e;
    --accent-3: #7bb7ff;
}

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

body {
    font-family: "Gill Sans", "Trebuchet MS", "Verdana", sans-serif;
    background:
        radial-gradient(circle at 15% 10%, rgba(79, 209, 181, 0.15), transparent 45%),
        radial-gradient(circle at 90% 0%, rgba(242, 193, 78, 0.15), transparent 40%),
        linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 50%, var(--bg-3) 100%);
    min-height: 100vh;
    padding: 0;
    color: var(--ink);
}

/* Top Navigation */
.top-nav {
    background: rgba(16, 32, 30, 0.95);
    padding: 15px 40px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-home {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-home:hover {
    color: #72f0d6;
}

.nav-divider {
    color: var(--border);
    margin: 0 10px;
}

.nav-current {
    color: var(--muted);
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
    background: linear-gradient(180deg, rgba(79, 209, 181, 0.2) 0%, transparent 100%);
    border-radius: 20px;
    border: 1px solid rgba(79, 209, 181, 0.35);
}

.hero-icon {
    font-size: 5em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(79, 209, 181, 0.45));
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), #ff9f6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(79, 209, 181, 0.35);
}

.hero .full-name {
    font-size: 0.5em;
    display: block;
    margin-top: 10px;
    background: linear-gradient(90deg, #9db3ad, #d3e2dd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.3em;
    color: var(--muted);
}

.version-badge {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(135deg, var(--accent), #7df0d7);
    color: #0f1f1b;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(79, 209, 181, 0.3);
}

/* Changelog Section */
.changelog-section {
    max-width: 800px;
    margin: 0 auto 40px;
}

.changelog-box {
    background: rgba(79, 209, 181, 0.08);
    border: 1px solid rgba(79, 209, 181, 0.3);
    border-radius: 15px;
    padding: 25px;
}

.changelog-entry {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(47, 75, 72, 0.6);
}

.changelog-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.changelog-entry:first-child {
    padding-top: 0;
}

.changelog-icon {
    font-size: 1.8em;
    flex-shrink: 0;
}

.changelog-content h4 {
    color: var(--accent);
    margin-bottom: 6px;
    font-size: 1.1em;
}

.changelog-content p {
    color: var(--muted);
    line-height: 1.6;
}

/* Intro Section */
.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.15em;
    line-height: 1.7;
    color: #cfe4df;
    padding: 30px;
    background: rgba(79, 209, 181, 0.08);
    border-radius: 15px;
    border-left: 4px solid var(--accent);
}

/* Notice Section */
.notice-section {
    max-width: 800px;
    margin: 0 auto 30px;
}

.notice-box {
    background: rgba(242, 193, 78, 0.1);
    border: 1px solid rgba(242, 193, 78, 0.4);
    border-left: 4px solid var(--accent-2);
    border-radius: 15px;
    padding: 25px 30px;
}

.notice-box h3 {
    color: var(--accent-2);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.notice-box p {
    color: #c9d1d9;
    line-height: 1.7;
    margin-bottom: 10px;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2em;
    margin: 50px 0 30px;
    color: #e9f3f1;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 2px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    background: var(--card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(79, 209, 181, 0.15);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #eaf4f2;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.6;
}

/* Museum Sections */
.museum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.museum-section {
    background: var(--card);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border);
}

.museum-section.gems {
    border-top: 4px solid var(--accent-2);
}

.museum-section.culture {
    border-top: 4px solid var(--accent);
}

.museum-section.aquarium {
    border-top: 4px solid var(--accent-3);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.section-icon {
    font-size: 2em;
}

.section-header h3 {
    color: #eaf4f2;
    font-size: 1.3em;
}

.section-desc {
    color: var(--muted);
    font-size: 0.95em;
    margin-bottom: 15px;
    line-height: 1.5;
}

.bundle-list {
    list-style: none;
}

.bundle-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #d2e5e0;
    border-bottom: 1px solid rgba(47, 75, 72, 0.6);
}

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

.bundle-icon {
    font-size: 1.2em;
    width: 28px;
    text-align: center;
}

.bundle-icon.gem { color: #a371f7; }
.bundle-icon.mineral { color: #8b949e; }
.bundle-icon.ore { color: #d29922; }
.bundle-icon.crystal { color: #79c0ff; }
.bundle-icon.mana { color: #58a6ff; }
.bundle-icon.money { color: #ffc857; }
.bundle-icon.golden { color: #ffd700; }
.bundle-icon.bars { color: #d29922; }
.bundle-icon.artifact { color: #ffc857; }
.bundle-icon.elven { color: #7ee787; }
.bundle-icon.nelvari { color: #f778ba; }
.bundle-icon.wither { color: #8957e5; }
.bundle-icon.fossil { color: #d29922; }
.bundle-icon.spring { color: #7ee787; }
.bundle-icon.summer { color: #ffc857; }
.bundle-icon.fall { color: #f0883e; }
.bundle-icon.winter { color: #79c0ff; }
.bundle-icon.flower { color: #f778ba; }
.bundle-icon.forage { color: #d29922; }
.bundle-icon.explore { color: #58a6ff; }
.bundle-icon.combat { color: #f85149; }
.bundle-icon.alchemy { color: #a371f7; }
.bundle-icon.temple { color: #ffc857; }
.bundle-icon.fishing { color: #58a6ff; }
.bundle-icon.large { color: #5bc0be; }
.bundle-icon.freshwater { color: #5bc0be; }
.bundle-icon.saltwater { color: #58a6ff; }
.bundle-icon.exotic { color: #f778ba; }
.bundle-icon.legendary { color: #ffc857; }
.bundle-icon.shellfish { color: #f0883e; }

/* Rarity Colors Section */
.rarity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.rarity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(20, 42, 40, 0.6);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.rarity-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.rarity-dot.common { background: #8b949e; }
.rarity-dot.uncommon { background: #7ee787; }
.rarity-dot.rare { background: #58a6ff; }
.rarity-dot.epic { background: #a371f7; }
.rarity-dot.legendary { background: #ffc857; }

.rarity-label {
    color: #d7e6e1;
    font-weight: 500;
}

/* Usage Steps */
.usage-steps {
    max-width: 700px;
    margin: 0 auto 50px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(20, 42, 40, 0.6);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.step:hover {
    border-color: var(--accent);
}

.step-number {
    background: linear-gradient(135deg, var(--accent), #7df0d7);
    color: #0f1f1b;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    flex-shrink: 0;
}

.step-content h4 {
    color: #eaf4f2;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.step-content p {
    color: var(--muted);
    line-height: 1.5;
}

kbd {
    background: #0f2522;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3px 8px;
    font-family: "Consolas", "Courier New", monospace;
    font-size: 0.9em;
    color: #d2e5e0;
    box-shadow: 0 2px 0 var(--border);
}

/* Installation */
.install-steps {
    max-width: 700px;
    margin: 0 auto 50px;
}

.install-step {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    background: rgba(20, 42, 40, 0.6);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border);
    align-items: center;
}

.step-icon {
    font-size: 2em;
    width: 50px;
    text-align: center;
}

.step-info h4 {
    color: #eaf4f2;
    margin-bottom: 6px;
}

.step-info p {
    color: var(--muted);
}

/* Configuration */
.config-table {
    max-width: 700px;
    margin: 0 auto 20px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20, 42, 40, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background: rgba(47, 75, 72, 0.6);
    color: #eaf4f2;
    font-weight: 600;
}

td {
    color: #d2e5e0;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(79, 209, 181, 0.05);
}

code {
    background: #0f2522;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: "Consolas", "Courier New", monospace;
    font-size: 0.9em;
    color: var(--accent);
}

.config-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.95em;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    border-top: 1px solid var(--border);
    background: rgba(16, 32, 30, 0.6);
    border-radius: 0 0 20px 20px;
}

.footer p {
    color: var(--muted);
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #72f0d6;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero-icon {
        font-size: 3.5em;
    }

    .section-title {
        font-size: 1.6em;
    }

    .step, .install-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 15px;
    }

    .top-nav {
        padding: 12px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }

    .features-grid, .museum-grid, .rarity-grid {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 0.9em;
    }

    th, td {
        padding: 10px 12px;
    }
}
