.wol-container {
    --wol-panel: #1A2233;
    --wol-brass: #C9A227;

    font-family: 'Rajdhani', sans-serif;
    color: var(--wol-brass);
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--wol-panel);
}

.wol-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #C0C0C0;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.wol-content-text {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto 3rem auto;
    text-align: justify;
    color: #E0E0E0;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border: 4px solid #fff;
    background-color: rgba(255, 255, 255, 0.02);
}

.wol-stars-container {
    margin-top: 3rem;
    text-align: center;
}

.wol-stars-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.wol-star {
    color: var(--wol-brass);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(201, 162, 39, 0.8);
    user-select: none;
}

.wol-star:hover {
    transform: scale(1.3);
    text-shadow: 0 0 10px rgba(201, 162, 39, 1);
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .wol-container { padding: 1rem; }
    .wol-content-text { font-size: 1rem; text-align: left; padding: 1.5rem; }
    .wol-stars-grid { gap: 6px; padding: 1rem 0; }
    .wol-star { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .wol-content-text { font-size: 0.9rem; padding: 1.2rem; }
    .wol-stars-grid { gap: 4px; }
    .wol-star { font-size: 1rem; }
}

@keyframes wolFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wol-header, .wol-content-text, .wol-stars-container {
    animation: wolFadeIn 1s ease-out;
}

.wol-stars-container {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}