* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary-bg: #0a0e27;
    --secondary-bg: #0f1629;
    --card-bg: #1a1f3a;
    --accent-blue: #00d4ff;
    --accent-purple: #7c3aed;
    --accent-pink: #ec4899;
    --accent-orange: #f97316;
    --accent-green: #10b981;
    --accent-gold: #ffd700;
    --accent-red: #ef4444;
    --text-primary: #e0e0ff;
    --text-secondary: #a8b2d1;
    --text-muted: #8892b0;
    --border-color: #1e2749;
    --gradient-1: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    --gradient-2: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    --gradient-3: linear-gradient(135deg, var(--accent-purple), var(--accent-pink), var(--accent-orange));
    --gradient-4: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    --gradient-5: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-glow-pink: 0 0 20px rgba(236, 72, 153, 0.3);
    --shadow-glow-gold: 0 0 20px rgba(255, 215, 0, 0.3)
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden
}

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #1a0e3a 50%, var(--primary-bg) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgb(124 58 237 / .15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgb(0 212 255 / .15) 0%, transparent 50%), radial-gradient(circle at 50% 20%, rgb(236 72 153 / .1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 10s ease-in-out infinite
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgb(255 215 0 / .1) 1px, transparent 1px), radial-gradient(circle, rgb(0 212 255 / .1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: particlesFloat 20s linear infinite;
    pointer-events: none;
    z-index: 0
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .7
    }
}

@keyframes particlesFloat {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-100px)
    }
}

@keyframes titlePulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.02)
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes pulseNumber {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgb(236 72 153 / .7)
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px #fff0
    }
}

@keyframes progressShine {
    0% {
        background-position: -200%
    }

    100% {
        background-position: 200%
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgb(0 212 255 / .7)
    }

    50% {
        box-shadow: 0 0 0 15px #fff0
    }
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 0 10px currentColor
    }

    50% {
        text-shadow: 0 0 20px currentColor
    }
}

@keyframes badgeShine {
    0% {
        box-shadow: 0 0 5px var(--accent-gold)
    }

    50% {
        box-shadow: 0 0 20px var(--accent-gold)
    }

    100% {
        box-shadow: 0 0 5px var(--accent-gold)
    }
}

.navbar-premium {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgb(15 22 41 / .98) 0%, rgb(10 14 39 / .98) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #fff0;
    border-image: linear-gradient(90deg, var(--accent-purple), var(--accent-blue), var(--accent-pink)) 1;
    box-shadow: 0 20px 60px rgb(0 212 255 / .2), inset 0 1px 0 rgb(255 255 255 / .1);
    transition: all 0.3s ease
}

.navbar-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    box-shadow: 0 0 20px var(--accent-blue)
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: .8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10
}

.logo-premium {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
    padding: .4rem .8rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgb(124 58 237 / .2), rgb(0 212 255 / .2));
    border: 1px solid rgb(0 212 255 / .3);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0
}

.logo-premium:hover {
    background: linear-gradient(135deg, rgb(124 58 237 / .3), rgb(0 212 255 / .3));
    border-color: var(--accent-pink);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgb(236 72 153 / .5)
}

.logo-icon {
    font-size: 1.4rem
}

.logo-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    font-size: 1.1rem
}

.logo-badge {
    font-size: .6rem;
    padding: .2rem .4rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    color: #fff;
    border-radius: 12px;
    font-weight: 700
}

.nav-menu-container {
    flex: 1;
    display: flex;
    justify-content: center
}

.nav-links-premium {
    display: flex;
    list-style: none;
    gap: .3rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}

.nav-item {
    position: relative
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .6rem .9rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: .85rem;
    border: 1px solid #fff0
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 212 255 / .2), rgb(124 58 237 / .2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1
}

.nav-link:hover::before {
    opacity: 1
}

.nav-link:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgb(0 212 255 / .6);
    transform: translateY(-2px);
    border-color: var(--accent-blue)
}

.nav-link.active {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    box-shadow: 0 8px 20px rgb(0 212 255 / .4);
    text-shadow: 0 0 10px rgb(0 0 0 / .3);
    border-color: #fff0
}

.nav-badge {
    font-size: .55rem;
    padding: .15rem .35rem;
    background: rgb(236 72 153 / .8);
    color: #fff;
    border-radius: 10px;
    font-weight: 700
}

.nav-link i {
    font-size: .95rem
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .6rem;
    flex-shrink: 0
}

.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    padding: .6rem 1rem;
    background: linear-gradient(135deg, rgb(0 212 255 / .2), rgb(124 58 237 / .2));
    border: 2px solid var(--accent-blue);
    border-radius: 6px;
    color: var(--accent-blue);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: .8rem;
    white-space: nowrap;
    min-height: 38px
}

.nav-icon-btn:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    border-color: var(--accent-pink);
    box-shadow: 0 8px 20px rgb(0 212 255 / .4);
    transform: translateY(-2px)
}

.nav-icon-btn i {
    font-size: 1rem
}

.game-mode-btn.active {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    border-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 8px 20px rgb(236 72 153 / .5)
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: .5rem
}

.hamburger-menu span {
    width: 22px;
    height: 2.5px;
    background: var(--accent-blue);
    border-radius: 2px;
    transition: all 0.3s ease
}

.hamburger-menu:hover span {
    background: var(--accent-pink)
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px)
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px)
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-bottom: 1rem;
    animation: titlePulse 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgb(124 58 237 / .5)
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 600
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    background: rgb(124 58 237 / .1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem
}

.stat-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgb(0 212 255 / .1));
    opacity: 0;
    transition: opacity 0.3s
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow)
}

.stat-card:hover::before {
    opacity: 1
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: iconBounce 2s ease-in-out infinite
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--accent-blue)
}

.stat-description {
    color: var(--text-muted);
    font-size: .95rem
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
    width: 100%
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem
}

.section-title i {
    color: var(--accent-blue);
    animation: iconRotate 3s linear infinite
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem
}

.ritual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch
}

.ritual-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%
}

.ritual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-3);
    transform: scaleX(0);
    transition: transform 0.3s
}

.ritual-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-pink);
    box-shadow: var(--shadow-glow-pink)
}

.ritual-card:hover::before {
    transform: scaleX(1)
}

.ritual-header {
    background: linear-gradient(135deg, rgb(124 58 237 / .2), rgb(236 72 153 / .2));
    padding: 2rem;
    border-bottom: 2px solid var(--border-color)
}

.ritual-number {
    display: inline-block;
    background: var(--gradient-2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 900;
    margin-bottom: 1rem;
    animation: pulseNumber 2s ease-in-out infinite
}

.ritual-name {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-bottom: .5rem
}

.ritual-difficulty {
    display: inline-block;
    padding: .4rem .8rem;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase
}

.difficulty-easy {
    background: var(--accent-green);
    color: #fff
}

.difficulty-medium {
    background: var(--accent-orange);
    color: #fff
}

.difficulty-hard {
    background: var(--accent-red);
    color: #fff
}

.difficulty-expert {
    background: var(--accent-purple);
    color: #fff
}

.ritual-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.ritual-section {
    margin-bottom: 1.5rem
}

.ritual-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.ritual-section-title i {
    font-size: 1.3rem
}

.ritual-requirements {
    background: rgb(0 212 255 / .05);
    border-left: 4px solid var(--accent-blue);
    padding: 1rem;
    border-radius: 8px
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .5rem 0;
    color: var(--text-secondary)
}

.requirement-icon {
    color: var(--accent-green);
    font-size: 1.2rem
}

.ritual-steps {
    list-style: none;
    counter-reset: step
}

.ritual-steps li {
    counter-increment: step;
    padding: 1rem 1rem 1rem 3.5rem;
    margin-bottom: 1rem;
    background: rgb(124 58 237 / .05);
    border-radius: 8px;
    position: relative
}

.ritual-steps li::before {
    content: counter(step);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-1);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .9rem
}

.ritual-reward {
    background: linear-gradient(135deg, rgb(255 215 0 / .1), rgb(249 115 22 / .1));
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem
}

.reward-brainrot {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: .5rem
}

.reward-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
    margin-top: 1rem
}

.reward-stat {
    background: rgb(0 0 0 / .3);
    padding: .8rem;
    border-radius: 6px;
    text-align: center
}

.reward-label {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: .3rem
}

.reward-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold)
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem
}

.content-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow)
}

.content-card:hover::before {
    transform: scaleX(1)
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-blue)
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary)
}

.card-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem
}

.card-list {
    list-style: none;
    margin-top: 1rem
}

.card-list li {
    padding: .5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: .75rem
}

.card-list li::before {
    content: "▶";
    color: var(--accent-blue);
    font-size: .8rem;
    margin-top: .3rem
}

.strategy-box {
    background: linear-gradient(135deg, rgb(124 58 237 / .15), rgb(0 212 255 / .1));
    border: 2px solid var(--accent-purple);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem
}

.strategy-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.strategy-badge {
    background: var(--gradient-1);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase
}

.strategy-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary)
}

.strategy-content {
    color: var(--text-secondary);
    line-height: 1.8
}

.tip-box {
    background: linear-gradient(135deg, rgb(236 72 153 / .1), rgb(249 115 22 / .1));
    border-left: 4px solid var(--accent-pink);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0
}

.tip-title {
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.warning-box {
    background: linear-gradient(135deg, rgb(239 68 68 / .1), rgb(249 115 22 / .1));
    border-left: 4px solid var(--accent-orange);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0
}

.warning-title {
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.success-box {
    background: linear-gradient(135deg, rgb(16 185 129 / .1), rgb(0 212 255 / .1));
    border-left: 4px solid var(--accent-green);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0
}

.success-title {
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.toc {
    background: linear-gradient(135deg, var(--card-bg), rgb(20 25 50 / .8));
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    box-shadow: 0 8px 32px rgb(0 212 255 / .15);
    transition: all 0.3s ease;
    z-index: 100;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-blue) #fff0
}

.toc::-webkit-scrollbar {
    width: 6px
}

.toc::-webkit-scrollbar-track {
    background: #fff0
}

.toc::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 3px
}

.toc::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink)
}

.toc-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    position: sticky;
    top: 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color)
}

.toc-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.toc-list li {
    padding: 0;
    border-bottom: 1px solid rgb(0 212 255 / .1);
    margin: 0;
    transition: all 0.2s ease
}

.toc-list li:last-child {
    border-bottom: none
}

.toc-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(.34, 1.56, .64, 1);
    display: block;
    padding: .9rem .8rem;
    position: relative;
    font-weight: 500;
    font-size: .95rem;
    border-left: 3px solid #fff0
}

.toc-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gradient-1);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1)
}

.toc-list a:hover {
    color: var(--accent-blue);
    padding-left: 1.2rem;
    text-shadow: 0 0 10px rgb(0 212 255 / .3);
    background: rgb(0 212 255 / .05);
    border-radius: 6px
}

.toc-list a:hover::before {
    transform: scaleY(1)
}

.toc-list a.active {
    color: var(--accent-blue);
    font-weight: 700;
    padding-left: 1.2rem;
    background: linear-gradient(90deg, rgb(0 212 255 / .2), transparent);
    border-left: 3px solid var(--accent-blue);
    text-shadow: 0 0 10px rgb(0 212 255 / .5)
}

.toc-list a.active::before {
    transform: scaleY(1)
}

@media (max-width:1024px) {
    .toc {
        position: static;
        max-height: none;
        margin-bottom: 3rem;
        top: auto
    }

    .toc-title {
        position: static
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }
}

@media (max-width:768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .toc {
        padding: 1.5rem 1.2rem;
        max-height: none;
        position: static
    }

    .toc-title {
        font-size: 1.2rem;
        padding-bottom: .8rem
    }

    .toc-list a {
        padding: .7rem .6rem;
        font-size: .9rem
    }

    .toc-list a:hover {
        padding-left: 1rem
    }

    .toc-list a.active {
        padding-left: 1rem
    }
}

@media (max-width:480px) {
    .toc {
        padding: 1rem 1rem
    }

    .toc-title {
        font-size: 1.1rem;
        margin-bottom: 1rem
    }

    .toc-list a {
        padding: .6rem .5rem;
        font-size: .85rem
    }

    .toc-list a:hover,
    .toc-list a.active {
        padding-left: .8rem
    }
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
    border-radius: 12px
}

.item-table,
.comparison-table {
    width: 100%;
    min-width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden
}

.item-table th,
.comparison-table th {
    background: var(--gradient-1);
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .9rem;
    white-space: nowrap
}

.item-table td,
.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary)
}

.item-table tr:hover,
.comparison-table tr:hover {
    background: rgb(0 212 255 / .05)
}

.item-name {
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: .75rem
}

.item-icon {
    font-size: 1.5rem
}

.steps-container {
    counter-reset: step-counter
}

.step {
    counter-increment: step-counter;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem
}

.step::before {
    content: counter(step-counter);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 4px 15px rgb(0 212 255 / .4)
}

.step-content {
    flex: 1
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--accent-blue)
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7
}

@media (max-width:768px) {
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1.2rem
    }

    .step::before {
        margin-bottom: 1rem
    }
}

@media (max-width:480px) {
    .step {
        padding: 1.2rem 1rem
    }

    .step::before {
        width: 45px;
        height: 45px;
        font-size: 1.3rem
    }

    .step-title {
        font-size: 1.1rem
    }
}

.accordion-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-primary);
    transition: background 0.3s
}

.accordion-header:hover {
    background: rgb(0 212 255 / .05)
}

.accordion-icon {
    color: var(--accent-blue);
    transition: transform 0.3s
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg)
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out
}

.accordion-item.active .accordion-content {
    max-height: 1000px
}

.accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8
}

.progress-container {
    margin: 2rem 0
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: .5rem;
    color: var(--text-secondary)
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgb(0 0 0 / .3);
    border-radius: 6px;
    overflow: hidden
}

.progress-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 6px;
    transition: width 1s ease;
    animation: progressShine 2s linear infinite
}

.cta-section {
    background: var(--gradient-1);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(255 255 255 / .1) 0%, transparent 70%);
    animation: iconRotate 20s linear infinite
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1
}

.cta-description {
    font-size: 1.2rem;
    color: rgb(255 255 255 / .9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1
}

.cta-button {
    background: #fff;
    color: var(--accent-purple);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgb(0 0 0 / .3)
}

.footer {
    background: rgb(15 22 41 / .95);
    border-top: 2px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 1rem
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s
}

.footer-links a:hover {
    color: var(--accent-blue)
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    animation: scrollPulse 2s ease-in-out infinite;
    border: none
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-glow)
}

.badge {
    display: inline-block;
    padding: .4rem .8rem;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: .5rem
}

.badge-beginner {
    background: var(--accent-green);
    color: #fff
}

.badge-intermediate {
    background: var(--accent-orange);
    color: #fff
}

.badge-advanced {
    background: var(--accent-pink);
    color: #fff
}

.badge-pro {
    background: var(--accent-gold);
    color: var(--primary-bg)
}

.player-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 0 20px rgb(0 212 255 / .5)
}

.glow-text {
    text-shadow: 0 0 10px currentColor;
    animation: textGlow 2s ease-in-out infinite
}

.event-badge {
    display: inline-block;
    background: var(--gradient-4);
    color: var(--primary-bg);
    padding: .5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    margin-top: .5rem;
    animation: badgeShine 3s linear infinite
}

.trait-icon {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgb(124 58 237 / .2);
    padding: .5rem 1rem;
    border-radius: 8px;
    margin: .3rem;
    font-size: .9rem
}

.ritual-image-placeholder {
    background: rgb(0 212 255 / .1);
    border: 2px dashed var(--accent-blue);
    border-radius: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    color: var(--text-muted);
    font-size: 1rem
}

@media (min-width:769px) {
    .hamburger-menu {
        display: none !important
    }

    .nav-menu-container {
        position: static !important;
        max-height: none !important;
        flex: 1;
        display: flex !important;
        justify-content: center;
        padding: 0;
        background: none !important;
        border: none !important;
        box-shadow: none !important
    }

    .nav-links-premium {
        flex-direction: row !important;
        gap: 0.3rem !important
    }

    .nav-link {
        width: auto !important;
        padding: .6rem 0.9rem !important;
        border: 1px solid transparent !important
    }
}

@media (max-width:1400px) {
    .ritual-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:1024px) {
    .navbar-container {
        gap: 1rem;
        padding: .8rem 1.5rem
    }

    .nav-link {
        padding: .5rem .7rem;
        font-size: .75rem
    }

    .nav-icon-btn {
        padding: .5rem .8rem;
        font-size: .7rem
    }

    .logo-premium {
        font-size: 1rem
    }

    .logo-text {
        font-size: .9rem
    }

    .two-column {
        grid-template-columns: 1fr
    }

    .toc {
        position: static
    }

    .container {
        padding: 2rem 1.5rem
    }

    .hero {
        padding: 3rem 1.5rem
    }

    .hero-title {
        font-size: 2.8rem
    }

    .hero-subtitle {
        font-size: 1.3rem
    }

    .hero-description {
        padding: 1.5rem
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ritual-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .section-title {
        font-size: 2.2rem
    }

    .ritual-header {
        padding: 1.5rem
    }

    .ritual-body {
        padding: 1.5rem
    }

    .strategy-box {
        padding: 1.5rem
    }

    .cta-section {
        padding: 3rem 1.5rem
    }

    .cta-title {
        font-size: 2rem
    }
}

@media (max-width:768px) {
    .hamburger-menu {
        display: flex !important
    }

    .nav-menu-container {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: linear-gradient(135deg, rgb(15 22 41 / .98), rgb(10 14 39 / .98)) !important;
        backdrop-filter: blur(20px) !important;
        border-bottom: 2px solid rgb(0 212 255 / .3) !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease, opacity 0.3s ease !important;
        z-index: 999 !important;
        padding: 0 !important;
        opacity: 0 !important
    }

    .nav-menu-container.active {
        max-height: 500px !important;
        opacity: 1 !important;
        overflow-y: auto !important;
        padding: 1rem 0 !important
    }

    .nav-links-premium {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        padding: 0 !important
    }

    .nav-link {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 1rem 1.5rem !important;
        border-radius: 0 !important;
        border: none !important;
        border-bottom: 1px solid rgb(255 255 255 / .1) !important;
        font-size: 1rem !important
    }

    .nav-link:last-child {
        border-bottom: none !important
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgb(0 212 255 / .15) !important;
        color: var(--accent-blue) !important
    }

    .navbar-container {
        padding: .7rem 1rem;
        gap: .8rem
    }

    .logo-premium {
        font-size: 1rem;
        padding: .35rem .7rem
    }

    .logo-text {
        font-size: 1rem
    }

    .logo-icon {
        font-size: 1.2rem
    }

    .logo-badge {
        font-size: .55rem
    }

    .nav-right {
        gap: .5rem
    }

    .nav-icon-btn span {
        display: none
    }

    .container {
        padding: 1.5rem 1rem
    }

    .hero {
        padding: 2.5rem 1rem
    }

    .hero-title {
        font-size: 2rem
    }

    .hero-subtitle {
        font-size: 1.1rem
    }

    .hero-description {
        padding: 1.2rem
    }

    .stats-grid,
    .ritual-grid,
    .content-grid {
        grid-template-columns: 1fr
    }

    .section-title {
        font-size: 1.8rem
    }

    .ritual-card {
        border-radius: 12px
    }

    .ritual-header {
        padding: 1.5rem 1.2rem
    }

    .ritual-body {
        padding: 1.5rem 1.2rem
    }

    .ritual-name {
        font-size: 1.5rem
    }

    .content-card {
        padding: 1.5rem 1.2rem
    }

    .card-title {
        font-size: 1.3rem
    }

    .strategy-box,
    .tip-box,
    .warning-box,
    .success-box {
        padding: 1.5rem 1.2rem
    }

    .step {
        padding: 1.5rem 1rem 1.5rem 1rem
    }

    .step::before {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        display: block;
        margin-left: auto;
        margin-right: auto
    }

    .step-title {
        text-align: center
    }

    .cta-section {
        padding: 2.5rem 1rem
    }

    .cta-title {
        font-size: 1.8rem
    }

    .cta-button {
        width: 100%;
        max-width: 300px
    }

    .footer {
        padding: 2rem 1rem
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem
    }

    .toc {
        padding: 1.5rem 1.2rem
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }
}

@media (max-width:480px) {
    .navbar-container {
        padding: .6rem .8rem
    }

    .logo-premium {
        font-size: .9rem;
        padding: .3rem .6rem
    }

    .logo-badge {
        display: none
    }

    .nav-right {
        gap: .3rem
    }

    .nav-icon-btn {
        padding: .5rem .7rem
    }

    .nav-link {
        padding: .9rem 1.2rem !important
    }

    .container {
        padding: 1rem .8rem
    }

    .hero {
        padding: 2rem .8rem
    }

    .hero-title {
        font-size: 1.6rem
    }

    .hero-subtitle {
        font-size: 1rem
    }

    .hero-description {
        padding: 1rem
    }

    .section-title {
        font-size: 1.5rem
    }

    .ritual-header {
        padding: 1.2rem 1rem
    }

    .ritual-body {
        padding: 1.2rem 1rem
    }

    .ritual-name {
        font-size: 1.3rem
    }

    .content-card {
        padding: 1.2rem 1rem
    }

    .strategy-box,
    .tip-box,
    .warning-box,
    .success-box {
        padding: 1rem .8rem
    }

    .step {
        padding: 1.2rem .8rem
    }

    .cta-section {
        padding: 2rem .8rem
    }

    .cta-title {
        font-size: 1.5rem
    }

    .footer {
        padding: 1.5rem .8rem
    }

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px
    }
}

@media (hover:none) and (pointer:coarse) {

    .nav-link,
    .accordion-header,
    .nav-icon-btn,
    .scroll-top,
    button,
    a {
        min-height: 44px;
        min-width: 44px
    }

    .stat-card:hover,
    .content-card:hover,
    .ritual-card:hover {
        transform: none
    }

    * {
        -webkit-tap-highlight-color: rgb(0 212 255 / .2)
    }
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }
}

.item-table,
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    display: block;
    overflow-x: auto
}

.item-table th,
.comparison-table th {
    background: var(--gradient-1);
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .9rem;
    white-space: nowrap
}

.item-table td,
.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    white-space: nowrap
}

.item-table tr:hover,
.comparison-table tr:hover {
    background: rgb(0 212 255 / .05)
}

@media (max-width:768px) {

    .item-table,
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
        box-shadow: inset -15px 0 15px -15px rgb(0 0 0 / .5)
    }

    .item-table thead,
    .comparison-table thead {
        display: table;
        width: 100%
    }

    .item-table tbody,
    .comparison-table tbody {
        display: table;
        width: 100%
    }

    .item-table th,
    .comparison-table th {
        padding: .8rem .6rem;
        font-size: .75rem
    }

    .item-table td,
    .comparison-table td {
        padding: .8rem .6rem;
        font-size: .85rem
    }

    .item-name {
        font-size: .9rem
    }

    .item-icon {
        font-size: 1.2rem
    }
}

@media (max-width:480px) {

    .item-table th,
    .comparison-table th {
        padding: .6rem .4rem;
        font-size: .7rem
    }

    .item-table td,
    .comparison-table td {
        padding: .6rem .4rem;
        font-size: .8rem
    }

    .item-name {
        flex-direction: column;
        gap: .3rem;
        align-items: flex-start;
        font-size: .85rem
    }

    .item-icon {
        font-size: 1.1rem
    }
}

.item-table,
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    table-layout: auto
}

.item-table th,
.comparison-table th {
    background: var(--gradient-1);
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .9rem
}

.item-table td,
.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary)
}

.item-table tr:hover,
.comparison-table tr:hover {
    background: rgb(0 212 255 / .05)
}

.item-name {
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: .75rem
}

.item-icon {
    font-size: 1.5rem
}

@media (max-width:768px) {

    .item-table,
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%
    }

    .item-table thead,
    .comparison-table thead,
    .item-table tbody,
    .comparison-table tbody {
        display: table;
        width: max-content;
        min-width: 100%
    }

    .item-table tr,
    .comparison-table tr {
        display: table-row;
        width: 100%
    }

    .item-table th,
    .comparison-table th,
    .item-table td,
    .comparison-table td {
        display: table-cell;
        padding: .8rem .6rem;
        font-size: .85rem;
        white-space: nowrap
    }

    .item-table th,
    .comparison-table th {
        font-size: .75rem;
        padding: .8rem .6rem
    }

    .item-name {
        font-size: .9rem;
        gap: .5rem
    }

    .item-icon {
        font-size: 1.2rem
    }
}

@media (max-width:480px) {

    .item-table th,
    .comparison-table th {
        padding: .7rem .5rem;
        font-size: .7rem
    }

    .item-table td,
    .comparison-table td {
        padding: .7rem .5rem;
        font-size: .8rem
    }

    .item-name {
        font-size: .85rem;
        gap: .4rem
    }

    .item-icon {
        font-size: 1.1rem
    }
}

@media (max-width:768px) {
    .table-wrapper {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 0 1rem;
        box-sizing: border-box
    }

    .item-table,
    .comparison-table {
        width: max-content;
        min-width: 600px;
        display: table
    }

    .item-table thead,
    .comparison-table thead,
    .item-table tbody,
    .comparison-table tbody {
        display: table-header-group;
        width: 100%
    }

    .item-table tbody {
        display: table-row-group
    }

    .item-table tr,
    .comparison-table tr {
        display: table-row
    }

    .item-table th,
    .comparison-table th,
    .item-table td,
    .comparison-table td {
        display: table-cell;
        padding: .75rem .5rem;
        font-size: .85rem
    }

    .item-table th,
    .comparison-table th {
        font-size: .75rem;
        padding: .75rem .5rem
    }

    .item-name {
        font-size: .85rem;
        gap: .4rem
    }

    .item-icon {
        font-size: 1.1rem
    }
}

@media (max-width:480px) {

    .item-table,
    .comparison-table {
        min-width: 550px
    }

    .item-table th,
    .comparison-table th {
        padding: .6rem .4rem;
        font-size: .7rem
    }

    .item-table td,
    .comparison-table td {
        padding: .6rem .4rem;
        font-size: .8rem
    }
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
    border-radius: 12px;
    position: relative
}

.table-wrapper::-webkit-scrollbar {
    height: 10px;
    background: rgb(0 0 0 / .3);
    border-radius: 10px
}

.table-wrapper::-webkit-scrollbar-track {
    background: rgb(15 22 41 / .5);
    border-radius: 10px;
    margin: 0 10px
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 10px;
    border: 2px solid rgb(15 22 41 / .5)
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    box-shadow: 0 0 10px rgb(0 212 255 / .5)
}

.table-wrapper {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-blue) rgb(15 22 41 / .5)
}

@media (max-width:768px) {
    .table-wrapper {
        padding-bottom: 5px
    }

    .item-table,
    .comparison-table {
        margin-bottom: 0
    }
}

@media (min-width:769px) {

    .item-table,
    .comparison-table {
        width: 100%;
        table-layout: fixed
    }

    .item-table th,
    .comparison-table th,
    .item-table td,
    .comparison-table td {
        width: auto
    }

    .item-table th:first-child,
    .comparison-table th:first-child,
    .item-table td:first-child,
    .comparison-table td:first-child {
        width: 30%
    }

    .item-table th:last-child,
    .comparison-table th:last-child,
    .item-table td:last-child,
    .comparison-table td:last-child {
        width: 40%
    }

    .item-table th:not(:first-child):not(:last-child),
    .comparison-table th:not(:first-child):not(:last-child),
    .item-table td:not(:first-child):not(:last-child),
    .comparison-table td:not(:first-child):not(:last-child) {
        width: 15%
    }
}

@media (min-width:769px) {

    .item-table,
    .comparison-table {
        width: 100%;
        table-layout: auto
    }

    .item-table th,
    .comparison-table th,
    .item-table td,
    .comparison-table td {
        white-space: normal;
        word-wrap: break-word
    }

    .item-table th:nth-child(1),
    .item-table td:nth-child(1) {
        width: 20%
    }

    .item-table th:nth-child(2),
    .item-table td:nth-child(2) {
        width: 12%
    }

    .item-table th:nth-child(3),
    .item-table td:nth-child(3) {
        width: 38%
    }

    .item-table th:nth-child(4),
    .item-table td:nth-child(4) {
        width: 30%
    }

    .comparison-table th,
    .comparison-table td {
        width: auto
    }

    .table-wrapper {
        overflow-x: visible
    }
}