:root {
    --bg: #0b0b0e;
    --bg-soft: #101017;
    --bg-card: #131318;
    --bg-card-hover: #181820;
    --bg-elevated: #1a1a20;
    --border: rgba(255, 255, 255, 0.08);
    --border-mid: rgba(255, 255, 255, 0.14);
    --border-strong: rgba(255, 255, 255, 0.22);
    --text: #ececf0;
    --text-dim: #9696a0;
    --text-muted: #64646f;
    --accent: #a855f7;
    --accent-hover: #c084fc;
    --accent-soft: rgba(168, 85, 247, 0.12);
    --accent-line: rgba(168, 85, 247, 0.35);
    --accent-glow: rgba(168, 85, 247, 0.25);
    --danger: #f87171;
    --danger-soft: rgba(248, 113, 113, 0.12);
    --success: #34d399;
    --success-soft: rgba(52, 211, 153, 0.12);
    --warn: #fbbf24;
    --warn-soft: rgba(251, 191, 36, 0.12);
    --blue: #38bdf8;
    --blue-soft: rgba(56, 189, 248, 0.12);
    --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-height: 100vh;
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg);
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 260px),
        linear-gradient(180deg, rgba(168, 85, 247, 0.06), transparent 450px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 4px);
    background-repeat: no-repeat, no-repeat, repeat;
    background-size: 100% 320px, 100% 450px, 100% 4px;
}

::selection {
    background: var(--accent);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

/* === HEADER & NAV === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 11, 14, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav {
    max-width: 1160px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 14px var(--accent-glow);
    overflow: hidden;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand span {
    color: var(--accent-hover);
}

.brand-badge {
    font-family: var(--mono);
    font-size: 0.68rem;
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    color: var(--accent-hover);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.92rem;
    color: var(--text-dim);
}

.nav-links a {
    transition: color 0.15s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-nav-main {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    color: var(--text);
    transition: all 0.15s ease;
}

.btn-nav-main:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
}

.btn-nav-donate {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    color: var(--accent-hover);
    transition: all 0.15s ease;
}

.btn-nav-donate:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 16px var(--accent-glow);
}

/* === MAIN CONTAINER === */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 50px 24px 100px;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    padding: 30px 0 50px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 60px;
}

.hero-content {
    max-width: 860px;
}

.eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--accent-hover);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 18px;
}

.hero-title .accent {
    color: var(--accent-hover);
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.08rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 760px;
}

/* Dual IP Box */
.ip-boxes-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.ip-card-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: 10px;
    padding: 8px 10px 8px 16px;
    transition: all 0.15s ease;
    cursor: pointer;
}

.ip-card-box:hover {
    border-color: var(--accent-line);
    background: var(--bg-card-hover);
}

.ip-card-type {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.ip-card-type.main {
    background: var(--accent-soft);
    color: var(--accent-hover);
}

.ip-card-addr {
    font-family: var(--mono);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.btn-copy-small {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    color: var(--accent-hover);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-copy-small:hover {
    background: var(--accent);
    color: #fff;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.15s ease;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 26px rgba(192, 132, 252, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.15s ease;
}

.btn-secondary:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
}

/* === SECTIONS GENERAL === */
.section {
    margin-bottom: 80px;
}

.section-header {
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.76rem;
    color: var(--accent-hover);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 0.98rem;
    color: var(--text-dim);
    max-width: 720px;
}

/* === 4 INSTALLATION OPTIONS GRID (STRETCH & EQUAL HEIGHT) === */
.install-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .install-options-grid { grid-template-columns: 1fr; }
}

.install-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.install-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
}

.install-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.install-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

.install-icon.windows {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.3);
}

.install-icon.android {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.3);
}

.install-icon.manual {
    color: #c084fc;
    background: rgba(192, 132, 252, 0.1);
    border-color: rgba(192, 132, 252, 0.3);
}

.install-icon.official {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}

.install-title-group h3 {
    font-size: 1.2rem;
    font-weight: 750;
    color: var(--text);
    margin-bottom: 4px;
}

.install-subtitle {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.install-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.install-steps li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.step-badge {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.ram-warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--warn-soft);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--warn);
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.install-card-footer {
    margin-top: auto;
    padding-top: 16px;
}

.install-btns-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 540px) {
    .install-btns-row { grid-template-columns: 1fr; }
}

.btn-download {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    color: var(--accent-hover);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-download:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
}

.btn-download.secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-mid);
    color: var(--text);
}

.btn-download.secondary:hover {
    background: var(--bg-elevated);
    border-color: var(--accent-line);
    color: var(--accent-hover);
    box-shadow: none;
}

/* === MODAL DIALOG FOR MIRRORS === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 8, 11, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    max-width: 560px;
    width: 100%;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--accent-glow);
    transform: scale(0.95);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-mid);
    color: var(--text-dim);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.modal-close:hover {
    color: var(--text);
    border-color: var(--accent-line);
    background: var(--accent-soft);
}

.modal-tag {
    font-family: var(--mono);
    font-size: 0.74rem;
    color: var(--accent-hover);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 750;
    color: var(--text);
    margin: 4px 0 4px;
}

.modal-subtitle {
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-bottom: 22px;
}

.modal-mirrors-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-mirror-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: border-color 0.15s ease;
}

.modal-mirror-item:hover {
    border-color: var(--border-strong);
}

.modal-mirror-item.main {
    border-color: var(--accent-line);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), transparent), var(--bg-elevated);
}

.modal-mirror-info-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.modal-mirror-icon {
    font-size: 1.5rem;
}

.modal-mirror-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.modal-mirror-info h4 span {
    font-size: 0.78rem;
    color: var(--accent-hover);
    font-weight: 600;
    margin-left: 4px;
}

.modal-mirror-info p {
    font-size: 0.82rem;
    color: var(--text-dim);
}

.modal-dl-btn {
    width: auto;
    padding: 9px 16px;
    font-size: 0.84rem;
    white-space: nowrap;
}

/* Accordion for Option 4 Mods */
.btn-toggle-mods {
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-mid);
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.15s ease;
}

.btn-toggle-mods:hover {
    border-color: var(--accent-line);
    color: var(--accent-hover);
}

.btn-toggle-mods.active {
    background: var(--accent-soft);
    border-color: var(--accent-line);
    color: var(--accent-hover);
}

.mods-accordion-wrapper {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.mods-accordion-wrapper.open {
    display: block;
}

.mods-filter-bar {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mods-search-input {
    flex: 1;
    min-width: 240px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-mid);
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease;
}

.mods-search-input:focus {
    border-color: var(--accent-line);
}

.mods-counter {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mods-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 6px;
}

.mods-list-grid::-webkit-scrollbar {
    width: 6px;
}
.mods-list-grid::-webkit-scrollbar-track {
    background: var(--bg-elevated);
    border-radius: 4px;
}
.mods-list-grid::-webkit-scrollbar-thumb {
    background: var(--border-mid);
    border-radius: 4px;
}
.mods-list-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.mod-item-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.15s ease;
}

.mod-item-card:hover {
    border-color: var(--border-strong);
}

.mod-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mod-num {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text-muted);
}

.mod-title {
    font-size: 0.92rem;
    font-weight: 650;
    color: var(--text);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mod-role-badge {
    font-family: var(--mono);
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    text-transform: lowercase;
}

.mod-item-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    overflow: hidden;
}

.mod-file {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 180px;
}

.mod-link-btn {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-radius: 6px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    color: var(--accent-hover);
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.15s ease;
}

.mod-link-btn:hover {
    background: var(--accent);
    color: #fff;
}

.mod-link-btn.disabled {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border);
    color: var(--text-muted);
    cursor: default;
}

/* === SERVER EXPERIENCE FEATURES === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .cards-grid { grid-template-columns: 1fr; }
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.15s ease;
}

.card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 650;
    color: var(--text);
    margin-bottom: 8px;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.card-tag {
    margin-top: auto;
    padding-top: 14px;
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === TECH SUPPORT CARD (HELP.PINLAND.FUN) === */
.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 14px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

@media (max-width: 768px) {
    .support-card { grid-template-columns: 1fr; }
}

.support-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.support-desc {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.support-contact-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    color: var(--accent-hover);
    font-family: var(--mono);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 10px;
}

.support-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    border-top: 1px solid var(--border);
    background: rgba(8, 8, 11, 0.9);
    padding: 50px 24px 30px;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    max-width: 340px;
}

.footer-brand .brand {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.footer-links-group {
    display: flex;
    gap: 60px;
}

.footer-col h5 {
    font-size: 0.88rem;
    font-weight: 650;
    color: var(--text);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-dim);
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    max-width: 1160px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* TOAST NOTIFICATION */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--accent-line);
    color: var(--text);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--accent-glow);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--success);
}
