/* modals_tutorial.css - Tutorial Guide Overlay */
#tutorial-content {
    background: linear-gradient(145deg, #1a1a1a, #050505);
    border: 3px solid #00e5ff;
    border-radius: 20px;
    padding: 20px;
    width: 95%;
    max-width: 400px;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.3), inset 0 0 20px rgba(0, 229, 255, 0.1);
}
#tutorial-header {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 900;
    color: #00e5ff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
#tutorial-body {
    text-align: left;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 10px;
}
.tutorial-section {
    margin-bottom: 15px;
    background: rgba(255,255,255,0.02);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 229, 255, 0.1);
}
.tutorial-section h3 {
    font-size: 12px;
    color: #ffd700;
    margin: 0 0 8px 0;
    border-bottom: 1px solid rgba(255,215,0,0.2);
    padding-bottom: 4px;
}
.tutorial-section p {
    font-size: 10px;
    color: #ccc;
    margin: 4px 0;
    line-height: 1.4;
}
#tutorial-footer { margin-top: 10px; }
