/* Tower Map Component Styles */
.asc-tower-container {
    position: relative;
    width: 100%;
    overflow-y: auto;
    padding: 1rem;
}

.asc-tower-structure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 60px;
}

.asc-tower-floor {
    position: relative;
    width: 100%;
    min-height: 100px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.asc-tower-floor__header {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.asc-tower-floor__number {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: var(--shadow-small);
}

.asc-tower-floor__nodes {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 8px;
}

.asc-tower-floor--topic-number {
    border-left: 4px solid var(--primary-blue);
}

.asc-tower-floor--topic-algebra {
    border-left: 4px solid var(--success-green);
}

.asc-tower-floor--topic-probability {
    border-left: 4px solid var(--warning-amber);
}

.asc-tower-floor--topic-geometry {
    border-left: 4px solid var(--info-cyan);
}

.asc-tower-floor--topic-ratio {
    border-left: 4px solid var(--error-red);
}

.asc-player-avatar {
    position: absolute;
    transition: all 0.5s ease;
    z-index: 10;
    transform: translateX(-50%);
}