html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background: #fcfaff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #3b334a;
    font-size: 13px;
}

* {
    box-sizing: border-box;
}

a {
    color: #3b334a;
    text-decoration: none;
}

.danceheader {
    background: #4a154b;
    border-bottom: 3px solid #6b21a8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.danceheaderinner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dancelogo img {
    max-height: 40px;
    vertical-align: middle;
}

.dancenav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.dancenav a {
    font-weight: bold;
    color: #f3e8ff;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.dancenav a:hover, .dancenav .active {
    background: #6b21a8;
    color: #ffffff;
}

.dancewrap {
    max-width: 1200px;
    margin: 15px auto;
    padding: 0 10px;
}

.dancecard {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #f3e8ff;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(107,33,168,0.02);
}

.dancecardtitle {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #6b21a8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #581c87;
}

.danceimg {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    border-radius: 4px;
}

.dancegrid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.dancegriditem {
    background: #ffffff;
    border: 1px solid #f3e8ff;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s;
}

.dancegriditem:hover {
    transform: translateY(-2px);
    border-color: #6b21a8;
    box-shadow: 0 4px 12px rgba(107,33,168,0.1);
}

.dancegriditemtitle {
    font-size: 12px;
    font-weight: bold;
    margin: 6px 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.danceprice {
    color: #ef4444;
    font-weight: bold;
}

.dancebtn {
    display: inline-block;
    background: #6b21a8;
    color: #ffffff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.dancebtn:hover {
    background: #581c87;
}

.dancepill {
    display: inline-block;
    background: #faf5ff;
    color: #6b21a8;
    border: 1px solid #f3e8ff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    margin: 2px;
}

.dancecircleicon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #faf5ff;
    color: #6b21a8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
}

.dancefooter {
    background: #1e1b4b;
    color: #f3e8ff;
    padding: 25px 0;
    text-align: center;
    margin-top: 30px;
}

.dancefooternav a {
    margin: 0 10px;
    color: #e9d5ff;
    font-size: 12px;
    font-weight: bold;
}

.dancecopyright {
    color: #e9d5ff;
    font-size: 12px;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .dancegrid4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .dancegrid4 { grid-template-columns: repeat(1, 1fr); }
    .danceheaderinner { flex-direction: column; gap: 10px; }
}\n