/* ===== AUDIO PAGE STYLES ===== */
.audio-container {
    min-height: calc(100vh - 120px);
    padding: 20px;
    background: #0000ff !important;
}

.audio-title {
    font-size: 48px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
    text-shadow: 3px 3px 0 #000;
    margin-bottom: 30px;
    animation: colorCycle 5s infinite;
}

.gear-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.gear-card {
    background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
    border: 4px solid #000;
    padding: 20px;
    box-shadow: 8px 8px 0 #000;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
}

.gear-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 #000;
}

.member-name {
    font-size: 36px;
    color: #0000ff;
    font-weight: bold;
    text-decoration: underline;
    text-shadow: 2px 2px 0 #fff;
    margin-bottom: 20px;
    text-align: center;
}

.gear-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gear-item {
    background: #000;
    border: 2px solid #00ff00;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gear-label {
    font-size: 14px;
    color: #00ff00;
    font-weight: bold;
    text-transform: uppercase;
}

.gear-value {
    font-size: 16px;
    color: #fff;
    font-weight: normal;
}

/* Tablet */
@media screen and (min-width: 600px) {
    .audio-title {
        font-size: 56px;
    }
    
    .gear-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .gear-label {
        font-size: 16px;
    }
    
    .gear-value {
        font-size: 18px;
        text-align: right;
    }
}

/* Desktop */
@media screen and (min-width: 900px) {
    .audio-container {
        padding: 40px;
    }
    
    .audio-title {
        font-size: 72px;
        margin-bottom: 50px;
    }
    
    .gear-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .gear-card {
        padding: 30px;
    }
    
    .member-name {
        font-size: 42px;
        margin-bottom: 25px;
    }
    
    .gear-item {
        padding: 15px 20px;
    }
    
    .gear-label {
        font-size: 18px;
    }
    
    .gear-value {
        font-size: 20px;
    }
}
