body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000c1d;
    color: #f0f0f0;
    margin: 0;
    line-height: 1.7;
}

.App {
    text-align: center;
}

main {
    padding: 2rem;
}

.fantasy-hub-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin: 2rem 0 0.5rem 0;
    background: linear-gradient(45deg, #9c009c, #00ffff, #ffdd00, #ff1100, #9c009c);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient-animation 8s ease-in-out infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.subtitle {
    font-family: 'Orbitron', sans-serif;
    font-weight: 400;
    color: #a5a4ff;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.description-container {
    color: #f0f0f0;
    max-width: 850px;
    margin: 1rem auto 4rem auto;
    padding: 1rem 2rem;
    text-align: left;
    line-height: 1.7;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.description-container h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    font-size: 1.6rem;
    border-bottom: 2px solid #00ffff33;
    padding-bottom: 0.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.description-container p, .description-container li {
    color: #ccc;
    font-size: 1.1rem;
}

.description-container strong {
    color: #fff;
    font-weight: 600;
}

.description-container ul {
    list-style: none;
    padding-left: 0;
}

.description-container li {
    padding-left: 2em;
    text-indent: -2em;
    margin-bottom: 1rem;
}

.description-container li::before {
    content: attr(data-emoji);
    padding-right: 1em;
    font-size: 1.1em;
}

.final-cta {
    text-align: center;
    margin: 3rem 0 1rem 0;
}

.final-cta h4 {
     font-family: 'Orbitron', sans-serif;
     font-size: 1.4rem;
     color: #f0f0f0;
     margin-bottom: 1.5rem;
}

.telegram-link {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    background-color: #6c63ff;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: background-color 0.4s ease, transform 0.2s ease;
    box-shadow: 0 0 15px #6c63ff88;
}

.telegram-link:hover {
    background-color: #483dff;
    transform: scale(1.05);
    cursor: pointer;
}

.accordion {
    background-color: rgba(255, 255, 255, 0.03);
    color: #e0e0e0;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    outline: none;
    font-size: 18px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
    position: relative;
}
.accordion:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.accordion:hover, .accordion.active {
    background-color: rgba(108, 99, 255, 0.1);
}

.accordion::after {
    content: '+';
    font-size: 22px;
    color: #a5a4ff;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.accordion.active::after {
    content: "−";
    transform: translateY(-50%);
}

.panel {
    padding: 0 22px;
    background-color: rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.panel.show {
    padding: 25px 22px;
}

.panel img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.panel .tab-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    padding-left: 0;
    list-style-position: inside;
}

.panel .tab-list li {
    margin-bottom: 0.5rem;
    break-inside: avoid-column;
}

.panel blockquote {
    border-left: 4px solid #a5a4ff;
    padding: 10px 20px;
    margin: 20px 0;
    background-color: rgba(108, 99, 255, 0.05);
    border-radius: 0 8px 8px 0;
}

.panel blockquote p {
    margin: 0;
}

.panel p {
    margin: 0;
    font-size: 1rem;
    color: #ccc;
}

.panel ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1rem;
}

.panel li {
    padding: 0.5rem 0;
    color: #ccc;
}

.panel li strong {
    color: #a5a4ff;
}
.sub-accordion {
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.2);
    font-weight: 500;
    margin-left: 15px;
    width: calc(100% - 15px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-accordion:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-accordion:hover, .sub-accordion.active {
     background-color: rgba(108, 99, 255, 0.2);
}

.sub-accordion::after {
    color: #00ffff; /* Бирюзовый для вложенных элементов */
}

.sub-panel {
    margin-left: 15px;
    width: calc(100% - 15px);
    border-left: 1px solid rgba(108, 99, 255, 0.2);
    border-right: 1px solid rgba(108, 99, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.4);
}