:root {
    --primary: #ffffff;
    --accent: #ffffff;
    --accent-muted: #888888;
    --discord-color: #0f0f11;
    --bg: #030303;
    --card-bg: rgba(255, 255, 255, 0.015);
    --glass-border: rgba(255, 255, 255, 0.04);
    --text-muted: #52525b;
    --text-secondary: #a1a1aa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg);
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.003) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
    background-size: 20px 20px, 40px 40px, 40px 40px;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle 450px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.035) 0%, transparent 60%);
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(12px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

header {
    padding: 50px 20px 25px;
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 10;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.logo {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, filter 0.3s ease;
}

.logo-container:hover .logo {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--accent);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.12));
}

h1 {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.header-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 20;
}

.header-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.25s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header-nav-link:hover {
    color: #ffffff;
}

.actions-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.password-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 10px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.password-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.password-box i { 
    color: #ffffff; 
    font-size: 0.75rem;
}

.password-box span strong {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.discord-btn {
    background: var(--discord-color);
    border: 1px solid var(--glass-border);
    padding: 10px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.discord-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.06);
}

.main-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px 100px;
    position: relative;
    z-index: 10;
}

.app-layout {
    display: grid;
    grid-template-columns: 240px 1fr 260px;
    gap: 32px;
    align-items: flex-start;
    margin-top: 20px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 30px;
}

.sidebar-panel {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-section-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding-left: 6px;
    margin-top: 8px;
    margin-bottom: 2px;
}

.sidebar-section-title:first-of-type {
    margin-top: 0;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 16px 12px 40px;
    color: #fff;
    font-size: 0.8rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-input::placeholder {
    color: #444448;
}

.search-input:focus {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #444448;
    font-size: 0.8rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-wrapper:focus-within .search-icon {
    color: #fff;
}

.filter-pills-container {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.filter-pill {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill:hover, .filter-pill.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.soft-switcher {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.soft-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 9px 12px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.82rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.soft-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 3px;
    background-color: transparent;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.soft-btn i {
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    opacity: 0.6;
}

.soft-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}

.soft-btn.active::before {
    background-color: #ffffff;
    height: 70%;
    top: 15%;
    box-shadow: 0 0 10px #ffffff;
}

.soft-btn.active { 
    color: #ffffff; 
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05); 
}

.soft-btn.go-back-btn {
    border-top: 1px solid var(--glass-border);
    margin-top: 8px;
    padding-top: 14px;
    border-radius: 0;
    color: #ffffff;
}

.content-area {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 16px;
}

.breadcrumb-trail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.breadcrumb-separator {
    font-size: 0.6rem;
    opacity: 0.4;
}

.breadcrumb-item.active {
    color: #ffffff;
}

.software-section {
    scroll-margin-top: 30px;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 90px;
}

.software-section:last-of-type {
    margin-bottom: 20px;
}

.section-category-header {
    margin-bottom: 22px;
}

.section-title-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.8px;
}

.os-switcher {
    display: flex;
    gap: 8px;
}

.os-btn {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.os-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.os-btn.active {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.group-container {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, border-left-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.group-container:hover {
    border-color: rgba(255, 255, 255, 0.12);
    border-left-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.02);
}

.group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 26px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    user-select: none;
    transition: background-color 0.2s ease;
}

.group-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.group-badge {
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
}

.group-arrow {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.group-body {
    max-height: 1000px;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.group-body.collapsed {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.group-container.collapsed .group-arrow {
    transform: rotate(-90deg);
}

.plugin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: background-color 0.2s ease;
}

.plugin-row:last-child {
    border-bottom: none;
}

.plugin-row:hover {
    background: rgba(255, 255, 255, 0.01);
}

.plugin-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.plugin-name {
    font-size: 0.94rem;
    font-weight: 600;
    color: #f3f4f6;
    letter-spacing: -0.2px;
}

.plugin-host-badge {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
}

.plugin-meta-info {
    font-size: 0.68rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    padding: 2px 6px;
    border-radius: 4px;
}

.plugin-download-btn {
    text-decoration: none;
    padding: 10px 22px;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plugin-download-btn:hover:not(.disabled) {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.12);
}

.plugin-download-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
    border-color: var(--glass-border);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.01);
}

.guide-container {
    line-height: 1.7;
    color: #e4e4e7;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.guide-container h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guide-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 16px;
}

.guide-section {
    margin-bottom: 48px;
    scroll-margin-top: 30px;
}

.guide-section h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 28px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-section h3::before {
    content: '|';
    color: var(--text-muted);
    font-weight: 800;
}

.guide-section p {
    font-size: 0.9rem;
    color: #a1a1aa;
    margin-bottom: 14px;
}

.guide-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 18px;
    margin: 20px 0;
}

.guide-box.warning {
    border-left: 3px solid #e11d48;
    background: rgba(225, 29, 72, 0.01);
}

.guide-box.info {
    border-left: 3px solid #ffffff;
    background: rgba(255, 255, 255, 0.02);
}

.guide-box-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.guide-box.warning .guide-box-title { color: #e11d48; }
.guide-box.info .guide-box-title { color: #ffffff; }

.code-block-container {
    position: relative;
    background: #09090b;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 14px;
    margin: 14px 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    overflow-x: auto;
}

.code-block {
    color: #e4e4e7;
    white-space: pre-wrap;
    line-height: 1.4;
}

.copy-code-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background: rgba(25, 25, 25, 0.6);
    border: 1px solid var(--glass-border);
    color: #a1a1aa;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-code-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

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

.tutorial-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.3s ease;
}

.tutorial-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.tutorial-card.featured {
    grid-column: span 2;
    border-color: rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.02);
}

.tutorial-card.featured .tutorial-badge {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.tutorial-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
}

.tutorial-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.tutorial-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.tutorial-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.tutorial-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    background: #050505;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    padding: 24px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.video-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.video-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.video-modal-close:hover {
    color: #ffffff;
}

.video-player-wrapper {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.video-player-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    user-select: none;
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, padding 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-item.open .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 0 20px 16px 20px;
}

.stats-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0,0,0,0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.stats-header {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.guides-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guides-list li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 4px 0;
}

.guides-list li a i {
    color: #ffffff;
    opacity: 0.8;
    font-size: 0.85rem;
}

.guides-list li a:hover {
    color: #fff;
    transform: translateX(4px);
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(25, 25, 25, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
}

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

.toast i {
    color: #ffffff;
}

footer {
    border-top: 1px solid var(--glass-border);
    padding: 25px 20px;
    text-align: center;
    background: rgba(0,0,0,0.4);
    margin-top: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
    z-index: 10;
}

.discord-footer-box {
    max-width: 600px;
    margin: 0 auto 15px;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-align: left;
}

.discord-footer-text h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.discord-footer-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.discord-footer-box .discord-btn {
    padding: 7px 15px;
    font-size: 0.75rem;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #000000; }
::-webkit-scrollbar-thumb { background: #1c1c1c; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #2d2d2d; }

@media (max-width: 1100px) {
    .app-layout {
        grid-template-columns: 220px 1fr 260px;
        gap: 20px;
    }
    .sidebar-right {
        grid-column: span 2;
        width: 100%;
        position: static;
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
    .sidebar-right .sidebar-panel {
        flex: 1;
    }
}

@media (max-width: 850px) {
    .app-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sidebar-left, .sidebar-right {
        grid-column: span 1;
        width: 100%;
    }
    .sidebar-right {
        flex-direction: column;
    }
    .sidebar-left {
        position: static;
    }
    .soft-switcher {
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        padding-bottom: 2px;
    }
    .soft-switcher::-webkit-scrollbar {
        display: none;
    }
    .soft-btn {
        width: auto;
        white-space: nowrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .tutorial-card.featured {
        grid-column: span 1 !important;
    }
}

@media (max-width: 600px) {
    h1 { font-size: 1.8rem; letter-spacing: 6px; }
    .os-switcher { width: 100%; justify-content: center; }
    .os-btn { flex-grow: 1; justify-content: center; }
    .actions-bar { flex-direction: column; width: 100%; }
    .password-box, .discord-btn { width: 100%; justify-content: center; }
    .discord-footer-box { flex-direction: column; text-align: center; }
    .discord-footer-box .discord-btn { width: 100%; }
}
