/* Editor - HRC Canvas Header Block */

/* ============================================
   HRC NEON BLOCKS - Canvas Styles
   ============================================ */

/* Base Block Styling */
.hrc-block {
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
    box-sizing: border-box;
}

/* Header Block */
.hrc-header {
    position: relative;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    border-bottom: 3px solid #c41e1e;
    padding: 25px 40px;
    box-shadow: 0 5px 30px rgba(196, 30, 30, 0.4);
}

.hrc-header .header-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hrc-header .header-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #c41e1e 0%, #8b0000 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.hrc-header .header-content {
    flex: 1;
}

.hrc-header .header-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #c41e1e;
    text-shadow:
        0 0 10px #c41e1e,
        0 0 20px #c41e1e,
        0 0 40px rgba(196, 30, 30, 0.6),
        2px 2px 0 #000;
    margin: 0;
    line-height: 1.1;
}

.hrc-header .header-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    margin: 8px 0 0 0;
}

.hrc-header .header-track {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    letter-spacing: 1px;
    margin: 5px 0 0 0;
}