.event-container {
    min-height: calc(100vh - 160px);
    padding: 120px 40px 40px;
    background: #FAFAFA;
}

.event-card {
    background: #fff;
    border: 2px solid #1a1a1a;
    padding: 50px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.event-header {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.event-info {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.event-image {
    flex-shrink: 0;
}

.event-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.event-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    white-space: pre-line;
}

.event-meta {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.event-meta strong {
    color: #1a1a1a;
    font-weight: 600;
}

.event-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.admin-btn {
    background: #1DB954;
    color: #fff;
    border: 2px solid #1DB954;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.admin-btn:hover {
    background: #1ed760;
    border-color: #1ed760;
}

.qr-section {
    text-align: center;
}

.qr-code {
    background: #fff;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
}

.qr-code img {
    width: 100px;
    height: 100px;
    display: block;
}

.qr-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.request-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.request-option {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 30px 25px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.request-option:hover {
    border-color: #1a1a1a;
    background: #f9f9f9;
}

.option-icon {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.option-icon svg {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.option-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.option-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.option-note {
    color: #999;
    font-size: 12px;
}

.requests-list {
    margin-bottom: 30px;
}

.bpm-stats {
    background: #f0f0f0;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.bpm-stats-text {
    color: #666;
    font-size: 14px;
}

.bpm-stats-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

.request-item {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 25px;
    margin-bottom: 15px;
}

.request-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.request-content {
    flex: 1;
}

.request-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.request-artist {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
}

.request-meta {
    color: #999;
    font-size: 14px;
    line-height: 1.4;
}

.expand-btn {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.expand-btn:hover {
    color: #666;
}

.expand-btn svg {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    transition: transform 0.2s ease;
}

.status-badge {
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-added {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.request-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    display: none;
}

.request-details.active {
    display: block;
}

.detail-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 10px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.detail-user {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.detail-meta {
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-meta svg {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}

.audio-features {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-badge {
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.feature-badge svg {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}

.feature-bpm {
    background: #e3f2fd;
    color: #1976d2;
}

.feature-key {
    background: #e8f5e8;
    color: #2e7d32;
}

.feature-energy {
    background: #fff3e0;
    color: #f57c00;
}

.pagination {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.pagination-mobile {
    display: block;
    text-align: center;
}

.pagination-desktop {
    display: none;
    justify-content: space-between;
    align-items: center;
}

.pagination-info {
    color: #666;
    font-size: 14px;
}

.pagination-info .highlight {
    color: #1a1a1a;
    font-weight: 600;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.pagination-desktop .pagination-nav {
    margin-top: 0;
}

.page-btn {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.page-btn:hover {
    border-color: #1a1a1a;
    background: #f9f9f9;
    color: #1a1a1a;
}

.page-btn.current {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.page-btn svg {
    width: 16px;
    height: 16px;
}

.empty-state {
    text-align: center;
    padding: 60px 40px;
    color: #666;
    font-size: 16px;
}

@media (max-width: 768px) {
    .event-container {
        padding: 140px 20px 20px;
    }

    .event-card {
        padding: 30px 25px;
    }

    .event-info {
        flex-direction: column;
        text-align: center;
    }

    .event-image img {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .event-title {
        font-size: 28px;
    }

    .event-actions {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .request-options {
        grid-template-columns: 1fr;
    }

    .request-main {
        flex-direction: column;
        gap: 15px;
    }

    .pagination-mobile {
        display: block;
    }

    .pagination-desktop {
        display: none;
    }
}

@media (min-width: 769px) {
    .pagination-mobile {
        display: none;
    }

    .pagination-desktop {
        display: flex;
    }
}