/* Resources Popup Styles */
.resources-subtitle {
    text-align: center;
    color: #7b8db0;
    font-size: 14px;
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 60vh;
    overflow-y: auto;
}

.resource-item {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #2a2a30;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: rgba(239, 0, 68, 0.1);
    border-color: #ef0044;
    transform: translateX(5px);
}

.resource-icon {
    color: #ef0044;
    font-size: 20px;
    margin-right: 16px;
    flex-shrink: 0;
}

.resource-content {
    flex: 1;
}

.resource-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.resource-description {
    color: #7b8db0;
    font-size: 13px;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.resources-list::-webkit-scrollbar {
    width: 8px;
}

.resources-list::-webkit-scrollbar-track {
    background: #0a0a0f;
    border-radius: 4px;
}

.resources-list::-webkit-scrollbar-thumb {
    background: #2a2a30;
    border-radius: 4px;
}

.resources-list::-webkit-scrollbar-thumb:hover {
    background: #ef0044;
}
